X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_BallElement.cxx;h=7a10f79d3883050af8d56a9f263abe347224dde3;hb=f5882cb24088610fb4f7d1cbcd41cb19a71bed2c;hp=22d2d04078c6bc70860f0c84a19e4a1e7e5377e0;hpb=7eda9ca931ed2a11cb5e4637e4ffe19f5c061115;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_BallElement.cxx b/src/SMDS/SMDS_BallElement.cxx index 22d2d0407..7a10f79d3 100644 --- a/src/SMDS/SMDS_BallElement.cxx +++ b/src/SMDS/SMDS_BallElement.cxx @@ -17,86 +17,31 @@ // 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 // File : SMDS_BallElement.cxx // Author : Edward AGAPOV (eap) #include "SMDS_BallElement.hxx" -#include "SMDS_ElemIterator.hxx" #include "SMDS_Mesh.hxx" #include "SMDS_MeshNode.hxx" -#include "SMDS_VtkCellIterator.hxx" -SMDS_BallElement::SMDS_BallElement() +void SMDS_BallElement::init(const SMDS_MeshNode * node, double diameter ) { - SMDS_MeshCell::init(); -} - -SMDS_BallElement::SMDS_BallElement (const SMDS_MeshNode * node, double diameter) -{ - init( node->getVtkId(), diameter, SMDS_Mesh::_meshList[ node->getMeshId() ] ); -} - -SMDS_BallElement::SMDS_BallElement(vtkIdType nodeId, double diameter, SMDS_Mesh* mesh) -{ - init( nodeId, diameter, mesh ); -} - -void SMDS_BallElement::init(vtkIdType nodeId, double diameter, SMDS_Mesh* mesh) -{ - SMDS_MeshCell::init(); - SMDS_UnstructuredGrid* grid = mesh->getGrid(); - myVtkID = grid->InsertNextLinkedCell( GetVtkType(), 1, &nodeId ); - myMeshId = mesh->getMeshId(); - grid->SetBallDiameter( myVtkID, diameter ); - mesh->setMyModified(); + int nodeVtkID = node->GetVtkID(); + int vtkID = getGrid()->InsertNextLinkedCell( toVtkType( SMDSEntity_Ball ), 1, &nodeVtkID ); + setVtkID( vtkID ); + getGrid()->SetBallDiameter( GetVtkID(), diameter ); } double SMDS_BallElement::GetDiameter() const { - return SMDS_Mesh::_meshList[myMeshId]->getGrid()->GetBallDiameter( myVtkID ); + return getGrid()->GetBallDiameter( GetVtkID() ); } void SMDS_BallElement::SetDiameter(double diameter) { - SMDS_Mesh::_meshList[myMeshId]->getGrid()->SetBallDiameter( myVtkID, diameter ); -} - -bool SMDS_BallElement::ChangeNode (const SMDS_MeshNode * node) -{ - vtkUnstructuredGrid* grid = SMDS_Mesh::_meshList[myMeshId]->getGrid(); - vtkIdType npts = 0; - vtkIdType* pts = 0; - grid->GetCellPoints(myVtkID, npts, pts); - pts[0] = node->getVtkId(); - SMDS_Mesh::_meshList[myMeshId]->setMyModified(); - return true; -} - -void SMDS_BallElement::Print (std::ostream & OS) const -{ - OS << "ball<" << GetID() << "> : "; + getGrid()->SetBallDiameter( GetVtkID(), diameter ); + GetMesh()->setMyModified(); } - -const SMDS_MeshNode* SMDS_BallElement::GetNode (const int ind) const -{ - vtkUnstructuredGrid* grid = SMDS_Mesh::_meshList[myMeshId]->getGrid(); - vtkIdType npts, *pts; - grid->GetCellPoints( myVtkID, npts, pts ); - return SMDS_Mesh::_meshList[myMeshId]->FindNodeVtk( pts[ 0 ]); -} - -SMDS_ElemIteratorPtr SMDS_BallElement::elementsIterator (SMDSAbs_ElementType type) const -{ - switch (type) - { - case SMDSAbs_Node: - return SMDS_ElemIteratorPtr(new SMDS_VtkCellIterator(SMDS_Mesh::_meshList[myMeshId], myVtkID, GetEntityType())); - default: - ; - return SMDS_ElemIteratorPtr((SMDS_ElemIterator*) NULL); - } -} -