Add a small amount of documentation to CellSet Dimensionality.

This commit is contained in:
Robert Maynard 2016-01-25 09:23:08 -05:00
parent 0416506715
commit 1d28a6dd04

@ -68,6 +68,13 @@ public:
{
return this->Name;
}
/// The Dimensionality of the cells inside the cell set.
/// Lines = 1
/// Triangles, Quads = 2
/// Tets, Hexs = 3
///
/// Currently
virtual vtkm::IdComponent GetDimensionality() const
{
return this->Dimensionality;