smesh/src/StdMeshers/StdMeshers_ProjectionSource1D.cxx

246 lines
7.9 KiB
C++
Raw Normal View History

2012-08-09 16:03:55 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
2012-08-09 16:03:55 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
//
2012-08-09 16:03:55 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
2012-08-09 16:03:55 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
2012-08-09 16:03:55 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 10:27:49 +05:00
//
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
// SMESH SMESH : idl implementation based on 'SMESH' unit's classes
// File : StdMeshers_ProjectionSource1D.cxx
// Author : Edward AGAPOV
// Module : SMESH
2009-02-17 10:27:49 +05:00
//
#include "StdMeshers_ProjectionSource1D.hxx"
#include "SMESH_Mesh.hxx"
#include "utilities.h"
#include <TopoDS.hxx>
using namespace std;
//=============================================================================
/*!
* StdMeshers_ProjectionSource1D::StdMeshers_ProjectionSource1D
*
* Constructor
*/
//=============================================================================
StdMeshers_ProjectionSource1D::StdMeshers_ProjectionSource1D(int hypId, int studyId,
SMESH_Gen * gen)
: SMESH_Hypothesis(hypId, studyId, gen)
{
_name = "ProjectionSource1D"; // used by Projection_1D
_param_algo_dim = 1; // 1D
_sourceMesh = 0;
}
//=============================================================================
/*!
* StdMeshers_ProjectionSource1D::~StdMeshers_ProjectionSource1D
*
* Destructor
*/
//=============================================================================
StdMeshers_ProjectionSource1D::~StdMeshers_ProjectionSource1D()
{
MESSAGE( "StdMeshers_ProjectionSource1D::~StdMeshers_ProjectionSource1D" );
}
//=============================================================================
/*!
* Sets source <edge> to take a mesh pattern from
*/
//=============================================================================
void StdMeshers_ProjectionSource1D::SetSourceEdge(const TopoDS_Shape& edge)
throw ( SALOME_Exception )
{
if ( edge.IsNull() )
throw SALOME_Exception(LOCALIZED("Null edge is not allowed"));
if ( edge.ShapeType() != TopAbs_EDGE && edge.ShapeType() != TopAbs_COMPOUND )
throw SALOME_Exception(LOCALIZED("Wrong shape type"));
if ( !_sourceEdge.IsSame( edge ) )
{
_sourceEdge = edge;
NotifySubMeshesHypothesisModification();
}
}
//=============================================================================
/*!
* Sets vertex association between the source edge and the target one.
* This parameter is optional
*/
//=============================================================================
void StdMeshers_ProjectionSource1D::SetVertexAssociation(const TopoDS_Shape& sourceVertex,
const TopoDS_Shape& targetVertex)
throw ( SALOME_Exception )
{
if ( sourceVertex.IsNull() != targetVertex.IsNull() )
throw SALOME_Exception(LOCALIZED("Two or none vertices must be provided"));
if ( !sourceVertex.IsNull() ) {
if ( sourceVertex.ShapeType() != TopAbs_VERTEX ||
targetVertex.ShapeType() != TopAbs_VERTEX )
throw SALOME_Exception(LOCALIZED("Wrong shape type"));
}
if ( !_sourceVertex.IsSame( sourceVertex ) ||
!_targetVertex.IsSame( targetVertex ) )
{
_sourceVertex = TopoDS::Vertex( sourceVertex );
_targetVertex = TopoDS::Vertex( targetVertex );
NotifySubMeshesHypothesisModification();
}
}
//=============================================================================
/*!
* Sets source <mesh> to take a mesh pattern from
*/
//=============================================================================
void StdMeshers_ProjectionSource1D::SetSourceMesh(SMESH_Mesh* mesh)
{
2012-08-09 16:03:55 +06:00
if ( _sourceMesh != mesh ) {
_sourceMesh = mesh;
NotifySubMeshesHypothesisModification();
2012-08-09 16:03:55 +06:00
}
}
//=============================================================================
/*!
*
*/
//=============================================================================
ostream & StdMeshers_ProjectionSource1D::SaveTo(ostream & save)
{
// we store it in order to be able to detect that hypo is really modified
save << " " << _sourceEdge.TShape().operator->() ;
save << " " << _sourceVertex.TShape().operator->();
save << " " << _targetVertex.TShape().operator->();
save << " " << ( _sourceMesh ? _sourceMesh->GetId() : -1 );
return save;
}
//=============================================================================
/*!
*
*/
//=============================================================================
istream & StdMeshers_ProjectionSource1D::LoadFrom(istream & load)
{
// impossible to restore w/o any context
return load;
}
//=============================================================================
/*!
*
*/
//=============================================================================
ostream & operator <<(ostream & save, StdMeshers_ProjectionSource1D & hyp)
{
return hyp.SaveTo( save );
}
//=============================================================================
/*!
*
*/
//=============================================================================
istream & operator >>(istream & load, StdMeshers_ProjectionSource1D & hyp)
{
return hyp.LoadFrom( load );
}
//================================================================================
/*!
* \brief Initialize start and end length by the mesh built on the geometry
* \param theMesh - the built mesh
* \param theShape - the geometry of interest
* \retval bool - true if parameter values have been successfully defined
*/
//================================================================================
bool StdMeshers_ProjectionSource1D::SetParametersByMesh(const SMESH_Mesh* ,
const TopoDS_Shape& )
{
return false;
}
//================================================================================
/*!
* \brief Return all parameters
*/
//================================================================================
void StdMeshers_ProjectionSource1D::GetStoreParams(TopoDS_Shape& s1,
TopoDS_Shape& s2,
TopoDS_Shape& s3) const
{
s1 = _sourceEdge;
s2 = _sourceVertex;
s3 = _targetVertex;
}
//================================================================================
/*!
* \brief Set all parameters without notifying on modification
*/
//================================================================================
void StdMeshers_ProjectionSource1D::RestoreParams(const TopoDS_Shape& s1,
const TopoDS_Shape& s2,
const TopoDS_Shape& s3,
SMESH_Mesh* mesh)
{
_sourceEdge = s1;
_sourceVertex = TopoDS::Vertex( s2 );
_targetVertex = TopoDS::Vertex( s3 );
_sourceMesh = mesh;
}
2009-02-17 10:27:49 +05:00
//================================================================================
/*!
* \brief Initialize my parameter values by default parameters.
* \retval bool - true if parameter values have been successfully defined
*/
//================================================================================
bool StdMeshers_ProjectionSource1D::SetParametersByDefaults(const TDefaults& /*dflts*/,
const SMESH_Mesh* /*theMesh*/)
{
return false;
}