Further directx cleaning.
This commit is contained in:
parent
d99a36f24f
commit
7fcc8e43ae
23 changed files with 401 additions and 304 deletions
|
@ -21,6 +21,16 @@ bool AbstractMesh::hasVectorAttribute(const std::string& tag) const
|
|||
return mVectorAttributes.find(tag) != mVectorAttributes.end();
|
||||
}
|
||||
|
||||
unsigned AbstractMesh::getNumNodes() const
|
||||
{
|
||||
return unsigned(mNodes.size());
|
||||
}
|
||||
|
||||
const VecNodes& AbstractMesh::getNodes() const
|
||||
{
|
||||
return mNodes;
|
||||
}
|
||||
|
||||
std::vector<double> AbstractMesh::getVectorAttribute(const std::string& tag) const
|
||||
{
|
||||
auto iter = mVectorAttributes.find(tag);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue