X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMDS%2FSMDS_BallElement.cxx;h=7a10f79d3883050af8d56a9f263abe347224dde3;hp=299093c94f6e81a3a865f1f730ff3d6680737ccb;hb=4e4625e956d1c112e71ed8fa8d8df5a0e9e0a3b3;hpb=6bac08c1a81f34d3f21c550bd92f83654b2546a5 diff --git a/src/SMDS/SMDS_BallElement.cxx b/src/SMDS/SMDS_BallElement.cxx index 299093c94..7a10f79d3 100644 --- a/src/SMDS/SMDS_BallElement.cxx +++ b/src/SMDS/SMDS_BallElement.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2010-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2010-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -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); - } -} -