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 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 87 88
|
// -------------------------------------------------------------------
// MAdLib - Copyright (C) 2008-2009 Universite catholique de Louvain
//
// See the Copyright.txt and License.txt files for license information.
// You should have received a copy of these files along with MAdLib.
// If not, see <http://www.madlib.be/license/>
//
// Please report all bugs and problems to <contrib@madlib.be>
//
// Authors: Gaetan Compere, Jean-Francois Remacle
// -------------------------------------------------------------------
#include "DiscreteSF.h"
#include "IsoMeshSize.h"
#include "AnisoMeshSize.h"
using namespace MAd;
// -------------------------------------------------------------------
namespace MAd {
// -------------------------------------------------------------------
DiscreteSF::DiscreteSF(pMesh m, std::string name): SizeFieldBase(name)
{
mesh = m;
dim = M_dim(mesh);
pMSizeFieldId = MD_newMeshDataId("");
}
// -------------------------------------------------------------------
DiscreteSF::~DiscreteSF()
{
MD_deleteMeshDataId(pMSizeFieldId);
}
// -------------------------------------------------------------------
void DiscreteSF::deleteSize(pEntity entity)
{
void * temp;
if( EN_getDataPtr(entity,pMSizeFieldId,&temp) ) {
EN_deleteData(entity,pMSizeFieldId);
delete (pMSize)temp;
}
}
// -------------------------------------------------------------------
void DiscreteSF::setSize(pEntity ent,
double dirs[3][3],
double h[3])
{
pMSize pS = new AnisoMeshSize(dirs,h);
setSize(ent,pS);
}
// -------------------------------------------------------------------
void DiscreteSF::setSize(pEntity ent, double h)
{
pMSize pS = new IsoMeshSize(h);
setSize(ent,pS);
}
// -------------------------------------------------------------------
void DiscreteSF::setSize(pEntity pEnt, pMSize pS)
{
void * temp;
if( EN_getDataPtr(pEnt,pMSizeFieldId,&temp) ) {
delete (pMSize)temp;
EN_modifyDataPtr(pEnt,pMSizeFieldId,pS);
}
else {
EN_attachDataPtr(pEnt,pMSizeFieldId,pS);
}
}
// -------------------------------------------------------------------
void DiscreteSF::setSize(int id, double h)
{
pVertex pv = M_vertex(mesh,id);
pMSize pS = new IsoMeshSize(h);
setSize((pEntity)pv,pS);
}
// -------------------------------------------------------------------
}
|