#3379 Holo Lens : Add RivCellSetEnum to RivSouceInfo

This commit is contained in:
Magne Sjaastad
2018-09-19 11:01:11 +02:00
parent 56c91c39fd
commit aa3287f615
7 changed files with 61 additions and 15 deletions

View File

@@ -19,6 +19,7 @@
#pragma once
#include "RivCellSetEnum.h"
#include "RivObjectSourceInfo.h"
#include "cvfArray.h"
@@ -40,10 +41,14 @@ public:
bool hasCellFaceMapping() const;
bool hasNNCIndices() const;
RivCellSetEnum cellSetType() const;
void setCellSetType(RivCellSetEnum cellSetType);
public:
cvf::cref<cvf::StuctGridTriangleToCellFaceMapper> m_cellFaceFromTriangleMapper;
cvf::ref<cvf::Array<size_t>> m_NNCIndices;
private:
size_t m_gridIndex;
size_t m_gridIndex;
RivCellSetEnum m_cellSetType;
};