FiberVISH 0.2
Fish - The Fiber Bundle API for the Vish Visualization Shell
TypedGrid.hpp
1#ifndef __FIBER_GRID_TYPES_TYPEDGRID_HPP
2#define __FIBER_GRID_TYPES_TYPEDGRID_HPP
3
4
5#include "gridtypesDllApi.h"
6
7#include <grid/Grid.hpp>
8
9namespace Fiber
10{
11
12
47{
48 bool assign(const RefPtr<Grid>&theGrid)
49 {
50 if (!theGrid) return false;
51
53
54 return true;
55 }
56
62 {
64 return false;
65 }
66
67 ~TypedGrid();
68};
69
70
71} // namespace Fiber
72
73#endif // __FIBER_GRID_TYPES_TYPEDGRID_HPP
74
An iterator with an optional DataCreator, which is just a class to intercept creation of data along a...
Definition CreativeIterator.hpp:34
StrongPtr & operator=(const DynPtr_t &other)
Given a fragmented field of curvilinear coordinates, (3D array of coordinates), build a uniform Grid ...
Definition FAQ.dox:2
Base class for grid types.
Definition TypedGrid.hpp:47
bool invalidate()
Invalidate the stored Grid pointer and return false.
Definition TypedGrid.hpp:61