Typo-fix by Kunda

http://www.salome-platform.org/forum/forum_9/22126441
This commit is contained in:
eap 2017-12-28 14:28:17 +03:00
parent ecc6a84a63
commit 04f9972521
197 changed files with 253 additions and 2064 deletions

1811
ChangeLog

File diff suppressed because it is too large Load Diff

View File

@ -42,7 +42,7 @@ Nb_Segments_4 = Regular_1D_3.NumberOfSegments(12)
MEFISTO_2D_3 = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO,geom=Face_3) MEFISTO_2D_3 = Mesh_1.Triangle(algo=smeshBuilder.MEFISTO,geom=Face_3)
SubMesh_3 = MEFISTO_2D_3.GetSubMesh() SubMesh_3 = MEFISTO_2D_3.GetSubMesh()
# check exisiting sub-mesh priority order # check existing sub-mesh priority order
[ [ SubMesh_1, SubMesh_3, SubMesh_2 ] ] = Mesh_1.GetMeshOrder() [ [ SubMesh_1, SubMesh_3, SubMesh_2 ] ] = Mesh_1.GetMeshOrder()
isDone = Mesh_1.Compute() isDone = Mesh_1.Compute()
print "Nb elements at initial order of sub-meshes:", Mesh_1.NbElements() print "Nb elements at initial order of sub-meshes:", Mesh_1.NbElements()

View File

@ -15,7 +15,7 @@ ids = filter.GetIDs()
print "Number of faces with aspect ratio > 1.5:", len(ids) print "Number of faces with aspect ratio > 1.5:", len(ids)
# copy the faces with aspect ratio > 1.5 to another mesh; # copy the faces with aspect ratio > 1.5 to another mesh;
# this demostrates that a filter can be used where usually a group or sub-mesh is acceptable # this demonstrates that a filter can be used where usually a group or sub-mesh is acceptable
filter.SetMesh( mesh.GetMesh() ) # - actually non necessary as mesh is set at filter creation filter.SetMesh( mesh.GetMesh() ) # - actually non necessary as mesh is set at filter creation
mesh2 = smesh.CopyMesh( filter, "AR > 1.5" ) mesh2 = smesh.CopyMesh( filter, "AR > 1.5" )
print "Number of copied faces with aspect ratio > 1.5:", mesh2.NbFaces() print "Number of copied faces with aspect ratio > 1.5:", mesh2.NbFaces()

View File

@ -1,6 +1,6 @@
/*! /*!
\page smesh_migration_page Modifing Mesh Python scripts from SALOME 6 and before \page smesh_migration_page Modifying Mesh Python scripts from SALOME 6 and before
\n In SALOME 7.2, the Python interface for %Mesh has been slightly modified to offer new functionality: \n In SALOME 7.2, the Python interface for %Mesh has been slightly modified to offer new functionality:

View File

@ -128,7 +128,7 @@ module StdMeshers
}; };
/*! /*!
* Common inteface of 1D hypotheses that can be reversed * Common interface of 1D hypotheses that can be reversed
*/ */
interface Reversible1D interface Reversible1D
{ {

View File

@ -76,7 +76,7 @@ module SMESH
const long Tag_LastGroup = 16; const long Tag_LastGroup = 16;
/*! /*!
* Hypothesis definintion error * Hypothesis definition error
*/ */
struct AlgoStateError struct AlgoStateError
{ {
@ -343,7 +343,7 @@ module SMESH
raises ( SALOME::SALOME_Exception ); raises ( SALOME::SALOME_Exception );
/*! /*!
* Return errors of hypotheses definintion * Return errors of hypotheses definition
* algo_error_array is empty if everything is OK * algo_error_array is empty if everything is OK
*/ */
algo_error_array GetAlgoState( in SMESH_Mesh theMesh, algo_error_array GetAlgoState( in SMESH_Mesh theMesh,

View File

@ -318,7 +318,7 @@ module SMESH
* \param IDsOfElements Ids of triangles to be fused. * \param IDsOfElements Ids of triangles to be fused.
* \param theCriterion Is used to choose a neighbour to fuse with. * \param theCriterion Is used to choose a neighbour to fuse with.
* \param theMaxAngle Is a max angle between element normals at which fusion * \param theMaxAngle Is a max angle between element normals at which fusion
* is still performed; theMaxAngle is mesured in radians. * is still performed; theMaxAngle is measured in radians.
* \return \c true in case of success, FALSE otherwise. * \return \c true in case of success, FALSE otherwise.
*/ */
boolean TriToQuad (in long_array IDsOfElements, boolean TriToQuad (in long_array IDsOfElements,
@ -356,7 +356,7 @@ module SMESH
/*! /*!
* \brief Split quadrangles into triangles. * \brief Split quadrangles into triangles.
* \param theElems The faces to be splitted. * \param theElems The faces to be split.
* \param the13Diag Is used to choose a diagonal for splitting. * \param the13Diag Is used to choose a diagonal for splitting.
* \return TRUE in case of success, FALSE otherwise. * \return TRUE in case of success, FALSE otherwise.
*/ */
@ -372,7 +372,7 @@ module SMESH
/*! /*!
* Find better splitting of the given quadrangle. * Find better splitting of the given quadrangle.
* \param IDOfQuad ID of the quadrangle to be splitted. * \param IDOfQuad ID of the quadrangle to be split.
* \param Criterion A criterion to choose a diagonal for splitting. * \param Criterion A criterion to choose a diagonal for splitting.
* \return 1 if 1-3 diagonal is better, 2 if 2-4 * \return 1 if 1-3 diagonal is better, 2 if 2-4
* diagonal is better, 0 if error occurs. * diagonal is better, 0 if error occurs.

View File

@ -1279,7 +1279,7 @@ double AspectRatio3D::GetValue( const TSequenceOfXYZ& P )
} // switch(nbNodes) } // switch(nbNodes)
if ( nbNodes > 4 ) { if ( nbNodes > 4 ) {
// avaluate aspect ratio of quadranle faces // evaluate aspect ratio of quadrangle faces
AspectRatio aspect2D; AspectRatio aspect2D;
SMDS_VolumeTool::VolumeType type = SMDS_VolumeTool::GetType( nbNodes ); SMDS_VolumeTool::VolumeType type = SMDS_VolumeTool::GetType( nbNodes );
int nbFaces = SMDS_VolumeTool::NbFaces( type ); int nbFaces = SMDS_VolumeTool::NbFaces( type );
@ -1288,7 +1288,7 @@ double AspectRatio3D::GetValue( const TSequenceOfXYZ& P )
if ( SMDS_VolumeTool::NbFaceNodes( type, i ) != 4 ) if ( SMDS_VolumeTool::NbFaceNodes( type, i ) != 4 )
continue; continue;
const int* pInd = SMDS_VolumeTool::GetFaceNodesIndices( type, i, true ); const int* pInd = SMDS_VolumeTool::GetFaceNodesIndices( type, i, true );
for ( int p = 0; p < 4; ++p ) // loop on nodes of a quadranle face for ( int p = 0; p < 4; ++p ) // loop on nodes of a quadrangle face
points( p + 1 ) = P( pInd[ p ] + 1 ); points( p + 1 ) = P( pInd[ p ] + 1 );
aQuality = std::max( aQuality, aspect2D.GetValue( points )); aQuality = std::max( aQuality, aspect2D.GetValue( points ));
} }

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH Driver : implementaion of driver for reading and writing // SMESH Driver : implementation of driver for reading and writing
// File : Mesh_Reader.cxx // File : Mesh_Reader.cxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH Driver : implementaion of driver for reading and writing // SMESH Driver : implementation of driver for reading and writing
// File : Mesh_Reader.h // File : Mesh_Reader.h
// Module : SMESH // Module : SMESH
// //

View File

@ -32,7 +32,7 @@ typedef boost::shared_ptr<DriverMED_Family> DriverMED_FamilyPtr;
namespace DriverMED namespace DriverMED
{ {
// Implemetation is in DriverMED_W_Field.cxx // Implementation is in DriverMED_W_Field.cxx
/* /*
* Returns MED element geom type (MED::EGeometrieElement) by SMDS type * Returns MED element geom type (MED::EGeometrieElement) by SMDS type

View File

@ -358,7 +358,7 @@ Driver_Mesh::Status DriverMED_W_Field::Perform()
return DRS_OK; return DRS_OK;
} }
namespace DriverMED // Implemetation of fuctions declared in DriverMED.hxx namespace DriverMED // Implementation of functions declared in DriverMED.hxx
{ {
//================================================================================ //================================================================================
/*! /*!

View File

@ -44,7 +44,7 @@
#endif #endif
namespace MED{ namespace MED{
// enum EVersion sould be synchronized with enum MED_VERSION in SMESH_Mesh.idl (.hh) // enum EVersion should be synchronized with enum MED_VERSION in SMESH_Mesh.idl (.hh)
// i.e. same positive values! // i.e. same positive values!
enum EVersion {eVUnknown = -1, eV2_1, eV2_2, eLATEST, enum EVersion {eVUnknown = -1, eV2_1, eV2_2, eLATEST,
eMINOR_0, eMINOR_1, eMINOR_2, eMINOR_3, eMINOR_4, eMINOR_5, eMINOR_6, eMINOR_7, eMINOR_8, eMINOR_9}; eMINOR_0, eMINOR_1, eMINOR_2, eMINOR_3, eMINOR_4, eMINOR_5, eMINOR_6, eMINOR_7, eMINOR_8, eMINOR_9};

View File

@ -80,7 +80,7 @@ int SMESH_ExtractGeometry::RequestData(vtkInformation *vtkNotUsed(request),
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0); vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0); vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and ouptut // get the input and output
vtkDataSet *input = vtkDataSet *input =
vtkDataSet::SafeDownCast(inInfo->Get(vtkDataObject::DATA_OBJECT())); vtkDataSet::SafeDownCast(inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkUnstructuredGrid *output = vtkUnstructuredGrid *output =

View File

@ -242,7 +242,7 @@ int SMESH_FaceOrientationFilter::RequestData(
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0); vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0); vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and ouptut // get the input and output
vtkDataSet *input = vtkDataSet::SafeDownCast( vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT())); inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkPolyData *output = vtkPolyData::SafeDownCast( vtkPolyData *output = vtkPolyData::SafeDownCast(

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDSAbs_ElementType.hxx // File : SMDSAbs_ElementType.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// Module : SMESH // Module : SMESH
// File : SMDS_BallElement.cxx // File : SMDS_BallElement.cxx
// Author : Edward AGAPOV (eap) // Author : Edward AGAPOV (eap)

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_BallElement.hxx // File : SMDS_BallElement.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_EdgePosition.cxx // File : SMDS_EdgePosition.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_EdgePosition.hxx // File : SMDS_EdgePosition.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshElement.hxx // File : SMDS_MeshElement.hxx
// Module : SMESH // Module : SMESH
// Created: 12.01.05 18:02:52 // Created: 12.01.05 18:02:52

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifndef _SMDS_FaceOfNodes_HeaderFile #ifndef _SMDS_FaceOfNodes_HeaderFile
#define _SMDS_FaceOfNodes_HeaderFile #define _SMDS_FaceOfNodes_HeaderFile

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_FacePosition.cxx // File : SMDS_FacePosition.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_FacePosition.hxx // File : SMDS_FacePosition.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifndef _SMDS_Iterator_HeaderFile #ifndef _SMDS_Iterator_HeaderFile
#define _SMDS_Iterator_HeaderFile #define _SMDS_Iterator_HeaderFile

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#include "SMESH_SMDS.hxx" #include "SMESH_SMDS.hxx"

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_IteratorOnIterators.hxx // File : SMDS_IteratorOnIterators.hxx
// Author : Edward AGAPOV (eap) // Author : Edward AGAPOV (eap)
// //
@ -32,7 +32,7 @@
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
/// SMDS_Iterator iterating over all elements provided by other iterators /// SMDS_Iterator iterating over all elements provided by other iterators
/// ///
/// Other iterators must implement SMDS_Iterator iterface and /// Other iterators must implement SMDS_Iterator interface and
/// must be provided within a stl-like container /// must be provided within a stl-like container
/// BE CAREFUL: iterator pointed value is static_cast'ed to VALUE /// BE CAREFUL: iterator pointed value is static_cast'ed to VALUE
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_Mesh.hxx // File : SMDS_Mesh.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_Mesh0DElement.cxx // File : SMDS_Mesh0DElement.cxx
// Module : SMESH // Module : SMESH
// //

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_Mesh0DElement.hxx // File : SMDS_Mesh0DElement.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshEdge.hxx // File : SMDS_MeshEdge.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshElement.hxx // File : SMDS_MeshElement.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshElementIDFactory.cxx // File : SMDS_MeshElementIDFactory.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshElementIDFactory.hxx // File : SMDS_MeshElementIDFactory.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#include "SMDS_MeshFace.hxx" #include "SMDS_MeshFace.hxx"

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshFace.hxx // File : SMDS_MeshFace.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshGroup.cxx // File : SMDS_MeshGroup.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshGroup.hxx // File : SMDS_MeshGroup.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshIDFactory.cxx // File : SMDS_MeshIDFactory.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshIDFactory.hxx // File : SMDS_MeshIDFactory.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshNode.hxx // File : SMDS_MeshNode.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshObject.cxx // File : SMDS_MeshObject.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshObject.hxx // File : SMDS_MeshObject.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshVolume.cxx // File : SMDS_MeshVolume.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshVolume.hxx // File : SMDS_MeshVolume.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifndef _SMDS_PolygonalFaceOfNodes_HeaderFile #ifndef _SMDS_PolygonalFaceOfNodes_HeaderFile
#define _SMDS_PolygonalFaceOfNodes_HeaderFile #define _SMDS_PolygonalFaceOfNodes_HeaderFile

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_PolyhedralVolumeOfNodes.hxx // File : SMDS_PolyhedralVolumeOfNodes.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_Position.cxx // File : SMDS_Position.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_Position.hxx // File : SMDS_Position.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File: SMDS_QuadraticEdge.cxx // File: SMDS_QuadraticEdge.cxx
// Created: 16.01.06 16:25:42 // Created: 16.01.06 16:25:42
// Author: Sergey KUUL // Author: Sergey KUUL

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_QuadraticEdge.hxx // File : SMDS_QuadraticEdge.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File: SMDS_QuadraticFaceOfNodes.cxx // File: SMDS_QuadraticFaceOfNodes.cxx
// Created: 16.01.06 17:12:58 // Created: 16.01.06 17:12:58
// Author: Sergey KUUL // Author: Sergey KUUL

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_QuadraticVolumeOfNodes.hxx // File : SMDS_QuadraticVolumeOfNodes.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File: SMDS_QuadraticVolumeOfNodes.cxx // File: SMDS_QuadraticVolumeOfNodes.cxx
// Created: 17.01.06 09:46:11 // Created: 17.01.06 09:46:11
// Author: Sergey KUUL // Author: Sergey KUUL

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_QuadraticVolumeOfNodes.hxx // File : SMDS_QuadraticVolumeOfNodes.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_SetIterator.hxx // File : SMDS_SetIterator.hxx
// Created : Feb 27 2006 // Created : Feb 27 2006
// Author : Edward AGAPOV (eap) // Author : Edward AGAPOV (eap)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_SpacePosition.cxx // File : SMDS_SpacePosition.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_SpacePosition.hxx // File : SMDS_SpacePosition.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_StdIterator.hxx // File : SMDS_StdIterator.hxx
// Created : Fri Feb 5 11:03:46 2010 // Created : Fri Feb 5 11:03:46 2010
// Author : Edward AGAPOV (eap) // Author : Edward AGAPOV (eap)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_TypeOfPosition.hxx // File : SMDS_TypeOfPosition.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_VertexPosition.cxx // File : SMDS_VertexPosition.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_VertexPosition.hxx // File : SMDS_VertexPosition.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_VolumeOfFaces.cxx // File : SMDS_VolumeOfFaces.cxx
// Author : Jean-Michel BOULCOURT // Author : Jean-Michel BOULCOURT
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_VolumeOfFaces.hxx // File : SMDS_VolumeOfFaces.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// //
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning(disable:4786) #pragma warning(disable:4786)

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_MeshVolume.hxx // File : SMDS_MeshVolume.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -1683,7 +1683,7 @@ double SMDS_VolumeTool::MaxLinearSize2() const
//================================================================================ //================================================================================
/*! /*!
* \brief fast check that only one volume is build on the face nodes * \brief Fast quickly check that only one volume is built on the face nodes
* This check is valid for conformal meshes only * This check is valid for conformal meshes only
*/ */
//================================================================================ //================================================================================
@ -1731,7 +1731,7 @@ bool SMDS_VolumeTool::IsFreeFace( int faceIndex, const SMDS_MeshElement** otherV
//================================================================================ //================================================================================
/*! /*!
* \brief Thorough check that only one volume is build on the face nodes * \brief Thorough check that only one volume is built on the face nodes
*/ */
//================================================================================ //================================================================================

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_VolumeTool.hxx // File : SMDS_VolumeTool.hxx
// Module : SMESH // Module : SMESH
// Created : Tue Jul 13 11:27:17 2004 // Created : Tue Jul 13 11:27:17 2004

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMDS : implementaion of Salome mesh data structure // SMESH SMDS : implementation of Salome mesh data structure
// File : SMDS_VtkEdge.hxx // File : SMDS_VtkEdge.hxx
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Algo.cxx // File : SMESH_Algo.cxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Algo.hxx // File : SMESH_Algo.hxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH
@ -69,7 +69,7 @@ typedef std::map< SMESH_subMesh*, std::vector<int> >::iterator MapShapeNbElemsIt
* Methods of the class are grouped into several parts: * Methods of the class are grouped into several parts:
* - main lifecycle methods, like Compute() * - main lifecycle methods, like Compute()
* - methods describing features of the algorithm, like NeedShape() * - methods describing features of the algorithm, like NeedShape()
* - methods related to dependencies between sub-meshes imposed by the algorith * - methods related to dependencies between sub-meshes imposed by the algorithm
* - static utilities, like EdgeLength() * - static utilities, like EdgeLength()
*/ */
// ================================================================================== // ==================================================================================

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Gen.cxx // File : SMESH_Gen.cxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH
@ -121,7 +121,7 @@ SMESH_Mesh* SMESH_Gen::CreateMesh(int theStudyId, bool theIsEmbeddedMode)
{ {
Unexpect aCatch(SalomeException); Unexpect aCatch(SalomeException);
// Get studyContext, create it if it does'nt exist, with a SMESHDS_Document // Get studyContext, create it if it doesn't exist, with a SMESHDS_Document
StudyContextStruct *aStudyContext = GetStudyContext(theStudyId); StudyContextStruct *aStudyContext = GetStudyContext(theStudyId);
// create a new SMESH_mesh object // create a new SMESH_mesh object
@ -1151,7 +1151,7 @@ SMESH_Algo *SMESH_Gen::GetAlgo(SMESH_subMesh * aSubMesh,
StudyContextStruct *SMESH_Gen::GetStudyContext(int studyId) StudyContextStruct *SMESH_Gen::GetStudyContext(int studyId)
{ {
// Get studyContext, create it if it does'nt exist, with a SMESHDS_Document // Get studyContext, create it if it doesn't exist, with a SMESHDS_Document
if (_mapStudyContext.find(studyId) == _mapStudyContext.end()) if (_mapStudyContext.find(studyId) == _mapStudyContext.end())
{ {

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Gen.hxx // File : SMESH_Gen.hxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Group.cxx // File : SMESH_Group.cxx
// Author : Michael Sazonov (OCC) // Author : Michael Sazonov (OCC)
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Group.hxx // File : SMESH_Group.hxx
// Author : Michael Sazonov (OCC) // Author : Michael Sazonov (OCC)
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_HypoFilter.cxx // File : SMESH_HypoFilter.cxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_HypoFilter.hxx // File : SMESH_HypoFilter.hxx
// Module : SMESH // Module : SMESH
// //

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Hypothesis.cxx // File : SMESH_Hypothesis.cxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Hypothesis.hxx // File : SMESH_Hypothesis.hxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH

View File

@ -697,7 +697,7 @@ SMESH_Mesh::AddHypothesis(const TopoDS_Shape & aSubShape,
} }
} }
// check concurent hypotheses on ancestors // check concurrent hypotheses on ancestors
if (ret < SMESH_Hypothesis::HYP_CONCURENT && !isGlobalHyp ) if (ret < SMESH_Hypothesis::HYP_CONCURENT && !isGlobalHyp )
{ {
SMESH_subMeshIteratorPtr smIt = subMesh->getDependsOnIterator(false,false); SMESH_subMeshIteratorPtr smIt = subMesh->getDependsOnIterator(false,false);
@ -767,7 +767,7 @@ SMESH_Mesh::RemoveHypothesis(const TopoDS_Shape & aSubShape,
if (ret2 > ret) // more severe if (ret2 > ret) // more severe
ret = ret2; ret = ret2;
// check concurent hypotheses on ancestors // check concurrent hypotheses on ancestors
if (ret < SMESH_Hypothesis::HYP_CONCURENT && !IsMainShape( aSubShape ) ) if (ret < SMESH_Hypothesis::HYP_CONCURENT && !IsMainShape( aSubShape ) )
{ {
SMESH_subMeshIteratorPtr smIt = subMesh->getDependsOnIterator(false,false); SMESH_subMeshIteratorPtr smIt = subMesh->getDependsOnIterator(false,false);

View File

@ -1279,7 +1279,7 @@ int SMESH_MeshEditor::Reorient2D (TIDSortedElemSet & theFaces,
} }
if ( otherFace && otherFace != theFace) if ( otherFace && otherFace != theFace)
{ {
// link must be reverse in otherFace if orientation ot otherFace // link must be reverse in otherFace if orientation to otherFace
// is same as that of theFace // is same as that of theFace
if ( abs(nodeInd2-nodeInd1) == 1 ? nodeInd2 > nodeInd1 : nodeInd1 > nodeInd2 ) if ( abs(nodeInd2-nodeInd1) == 1 ? nodeInd2 > nodeInd1 : nodeInd1 > nodeInd2 )
{ {
@ -1501,7 +1501,7 @@ bool SMESH_MeshEditor::QuadToTri (TIDSortedElemSet & theElems,
//======================================================================= //=======================================================================
/*! /*!
* \brief Split each of given quadrangles into 4 triangles. * \brief Split each of given quadrangles into 4 triangles.
* \param theElems - The faces to be splitted. If empty all faces are split. * \param theElems - The faces to be split. If empty all faces are split.
*/ */
//======================================================================= //=======================================================================
@ -6145,7 +6145,7 @@ SMESH_MeshEditor::ExtrusionAlongTrack (TIDSortedElemSet theElements[2],
makeEdgePathPoints(aPrms, aTrackEdge,(aN1->GetID()==startNid), LPP); makeEdgePathPoints(aPrms, aTrackEdge,(aN1->GetID()==startNid), LPP);
LLPPs.push_back(LPP); LLPPs.push_back(LPP);
UsedNums.Add(k); UsedNums.Add(k);
// update startN for search following egde // update startN for search following edge
if( aN1->GetID() == startNid ) startNid = aN2->GetID(); if( aN1->GetID() == startNid ) startNid = aN2->GetID();
else startNid = aN1->GetID(); else startNid = aN1->GetID();
break; break;
@ -6444,7 +6444,7 @@ SMESH_MeshEditor::ExtrusionAlongTrack (TIDSortedElemSet theElements[2],
makeEdgePathPoints(aPrms, aTrackEdge, aN1isOK, LPP); makeEdgePathPoints(aPrms, aTrackEdge, aN1isOK, LPP);
LLPPs.push_back(LPP); LLPPs.push_back(LPP);
UsedNums.Add(k); UsedNums.Add(k);
// update startN for search following egde // update startN for search following edge
if ( aN1isOK ) aVprev = aV2; if ( aN1isOK ) aVprev = aV2;
else aVprev = aV1; else aVprev = aV1;
break; break;

View File

@ -199,7 +199,7 @@ public:
const bool the13Diag); const bool the13Diag);
/*! /*!
* \brief Split each of given quadrangles into 4 triangles. * \brief Split each of given quadrangles into 4 triangles.
* \param theElems - The faces to be splitted. If empty all faces are split. * \param theElems - The faces to be split. If empty all faces are split.
*/ */
void QuadTo4Tri (TIDSortedElemSet & theElems); void QuadTo4Tri (TIDSortedElemSet & theElems);
@ -542,7 +542,7 @@ public:
// of the side 2. If nb of links in the free border and // of the side 2. If nb of links in the free border and
// between theSide2FirstNode and theSide2LastNode are different, // between theSide2FirstNode and theSide2LastNode are different,
// additional nodes are inserted on a link provided that no // additional nodes are inserted on a link provided that no
// volume elements share the splitted link. // volume elements share the split link.
// The side 2 is a free border if theSide2IsFreeBorder == true. // The side 2 is a free border if theSide2IsFreeBorder == true.
// Sewing is performed between the given first, second and last // Sewing is performed between the given first, second and last
// nodes on the sides. // nodes on the sides.

View File

@ -2963,7 +2963,7 @@ bool SMESH_MesherHelper::IsDistorted2D( SMESH_subMesh* faceSM,
* \brief Find out elements orientation on a geometrical face * \brief Find out elements orientation on a geometrical face
* \param theFace - The face correctly oriented in the shape being meshed * \param theFace - The face correctly oriented in the shape being meshed
* \retval bool - true if the face normal and the normal of first element * \retval bool - true if the face normal and the normal of first element
* in the correspoding submesh point in different directions * in the corresponding submesh point in different directions
*/ */
//================================================================================ //================================================================================
@ -4378,7 +4378,7 @@ namespace { // Structures used by FixQuadraticElements()
vector< TChain> & resultChains, vector< TChain> & resultChains,
SMDS_TypeOfPosition pos ) SMDS_TypeOfPosition pos )
{ {
// put links in the set and evalute number of result chains by number of boundary links // put links in the set and evaluate number of result chains by number of boundary links
TLinkSet linkSet; TLinkSet linkSet;
size_t nbBndLinks = 0; size_t nbBndLinks = 0;
for ( TChain::iterator lnk = allLinks.begin(); lnk != allLinks.end(); ++lnk ) { for ( TChain::iterator lnk = allLinks.begin(); lnk != allLinks.end(); ++lnk ) {

View File

@ -2481,7 +2481,7 @@ bool SMESH_Pattern::Apply (const TopoDS_Face& theFace,
// If there are several wires, define the order of edges of inner wires: // If there are several wires, define the order of edges of inner wires:
// compute UV of inner edge-points using 2 methods: the one for in-face points // compute UV of inner edge-points using 2 methods: the one for in-face points
// and the one for on-edge points and then choose the best edge order // and the one for on-edge points and then choose the best edge order
// by the best correspondance of the 2 results // by the best correspondence of the 2 results
if ( nbWires > 1 ) if ( nbWires > 1 )
{ {
// compute UV of inner edge-points using the method for in-face points // compute UV of inner edge-points using the method for in-face points

View File

@ -20,7 +20,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_subMesh.cxx // File : SMESH_subMesh.cxx
// Author : Paul RASCLE, EDF // Author : Paul RASCLE, EDF
// Module : SMESH // Module : SMESH

View File

@ -176,7 +176,7 @@ int SMESHGUI_PredicateFilter::GetId() const
/* /*
Class : SMESHGUI_QuadrangleFilter Class : SMESHGUI_QuadrangleFilter
Description : Verify whether selected cell is quadranle Description : Verify whether selected cell is quadrangle
*/ */
//======================================================================= //=======================================================================
@ -194,7 +194,7 @@ SMESHGUI_QuadrangleFilter::~SMESHGUI_QuadrangleFilter()
//======================================================================= //=======================================================================
// name : SMESHGUI_QuadrangleFilter::IsValid // name : SMESHGUI_QuadrangleFilter::IsValid
// Purpose : Verify whether selected cell is quadranle // Purpose : Verify whether selected cell is quadrangle
//======================================================================= //=======================================================================
bool SMESHGUI_QuadrangleFilter::IsValid( const int theCellId ) const bool SMESHGUI_QuadrangleFilter::IsValid( const int theCellId ) const
{ {
@ -214,7 +214,7 @@ bool SMESHGUI_QuadrangleFilter::IsValid( const int theCellId ) const
//======================================================================= //=======================================================================
// name : SMESHGUI_QuadrangleFilter::IsValid // name : SMESHGUI_QuadrangleFilter::IsValid
// Purpose : Verify whether selected cell is quadranle // Purpose : Verify whether selected cell is quadrangle
//======================================================================= //=======================================================================
bool SMESHGUI_QuadrangleFilter::IsObjValid( const int theObjId ) const bool SMESHGUI_QuadrangleFilter::IsObjValid( const int theObjId ) const
{ {

View File

@ -104,7 +104,7 @@ public:
/* /*
Class : SMESHGUI_QuadrangleFilter Class : SMESHGUI_QuadrangleFilter
Description : Verify whether selected cell is quadranle Description : Verify whether selected cell is quadrangle
*/ */
DEFINE_STANDARD_HANDLE(SMESHGUI_QuadrangleFilter, SMESHGUI_Filter) DEFINE_STANDARD_HANDLE(SMESHGUI_QuadrangleFilter, SMESHGUI_Filter)

View File

@ -720,7 +720,7 @@ bool SMESH_Block::ComputeParameters(const gp_Pnt& thePoint,
const bool isOnFace = IsFaceID( theShapeID ); const bool isOnFace = IsFaceID( theShapeID );
double * coef = GetShapeCoef( theShapeID ); double * coef = GetShapeCoef( theShapeID );
// Find the first guess paremeters // Find the first guess parameters
gp_XYZ start(0, 0, 0); gp_XYZ start(0, 0, 0);
@ -1585,7 +1585,7 @@ int SMESH_Block::GetOrderedEdges (const TopoDS_Face& theFace,
} }
//================================================================================ //================================================================================
/*! /*!
* \brief Call it after geometry initialisation * \brief Call it after geometry initialization
*/ */
//================================================================================ //================================================================================

View File

@ -306,7 +306,7 @@ public:
protected: protected:
/*! /*!
* \brief Call it after geometry initialisation * \brief Call it after geometry initialization
*/ */
void init(); void init();

View File

@ -17,7 +17,7 @@
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
// //
// SMESH SMESH : implementaion of SMESH idl descriptions // SMESH SMESH : implementation of SMESH idl descriptions
// File : SMESH_Comment.hxx // File : SMESH_Comment.hxx
// Created : Wed Mar 14 18:28:45 2007 // Created : Wed Mar 14 18:28:45 2007
// Author : Edward AGAPOV (eap) // Author : Edward AGAPOV (eap)

View File

@ -87,7 +87,7 @@ public:
bool getInts(std::vector<int>& ids); bool getInts(std::vector<int>& ids);
// ------------------------ // ------------------------
// Writting a binary file // Writing a binary file
// ------------------------ // ------------------------
bool openForWriting(); // binary writing only bool openForWriting(); // binary writing only

View File

@ -172,7 +172,7 @@ namespace SMESH_MeshAlgos
const SMDS_MeshNode* node1 ); const SMDS_MeshNode* node1 );
/*! /*!
* \brief Return SMESH_NodeSearcher. The caller is responsible for deleteing it * \brief Return SMESH_NodeSearcher. The caller is responsible for deleting it
*/ */
SMESHUtils_EXPORT SMESHUtils_EXPORT
SMESH_NodeSearcher* GetNodeSearcher( SMDS_Mesh& mesh ); SMESH_NodeSearcher* GetNodeSearcher( SMDS_Mesh& mesh );

View File

@ -143,7 +143,7 @@ struct SMESH_OrientedLink: public SMESH_TLink
//------------------------------------------ //------------------------------------------
/*! /*!
* \brief SMDS_MeshNode -> gp_XYZ convertor * \brief SMDS_MeshNode -> gp_XYZ converter
*/ */
//------------------------------------------ //------------------------------------------
struct SMESH_TNodeXYZ : public gp_XYZ struct SMESH_TNodeXYZ : public gp_XYZ

Some files were not shown because too many files have changed in this diff Show More