//################################################################################################## // // Custom Visualization Core library // Copyright (C) 2011-2012 Ceetron AS // // This library is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This library is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at <> // for more details. // //################################################################################################## #pragma once #include "cvfObject.h" #include "cvfVector3.h" namespace cvf { class CellFilterBase; // Navneforslag // StructGridGeometryGeneratorInterface // Main purpose of this class is to define the interface to be used by geometry generators class StructGridInterface : public Object { public: enum FaceType { POS_I, NEG_I, POS_J, NEG_J, POS_K, NEG_K }; public: StructGridInterface();; virtual size_t gridPointCountI() const = 0; virtual size_t gridPointCountJ() const = 0; virtual size_t gridPointCountK() const = 0; size_t cellCountI() const; size_t cellCountJ() const; size_t cellCountK() const; virtual bool isCellValid(size_t i, size_t j, size_t k) const = 0; virtual cvf::Vec3d minCoordinate() const = 0; virtual cvf::Vec3d maxCoordinate() const = 0; void characteristicCellSizes(double* iSize, double* jSize, double* kSize); virtual cvf::Vec3d displayModelOffset() const; virtual bool cellIJKNeighbor(size_t i, size_t j, size_t k, FaceType face, size_t* neighborCellIndex) const = 0; virtual size_t cellIndexFromIJK(size_t i, size_t j, size_t k) const = 0; virtual bool ijkFromCellIndex(size_t cellIndex, size_t* i, size_t* j, size_t* k) const = 0; virtual bool cellIJKFromCoordinate(const cvf::Vec3d& coord, size_t* i, size_t* j, size_t* k) const = 0; virtual void cellCornerVertices(size_t cellIndex, cvf::Vec3d vertices[8]) const = 0; virtual cvf::Vec3d cellCentroid(size_t cellIndex) const = 0; virtual void cellMinMaxCordinates(size_t cellIndex, cvf::Vec3d* minCoordinate, cvf::Vec3d* maxCoordinate) const = 0; virtual size_t gridPointIndexFromIJK(size_t i, size_t j, size_t k) const = 0; virtual cvf::Vec3d gridPointCoordinate(size_t i, size_t j, size_t k) const = 0; public: static void cellFaceVertexIndices(FaceType face, cvf::ubyte vertexIndices[4]); static FaceType oppositeFace(FaceType face); static void neighborIJKAtCellFace(size_t i, size_t j, size_t k, StructGridInterface::FaceType face, size_t* ni, size_t* nj, size_t* nk); private: double m_characteristicCellSizeI; double m_characteristicCellSizeJ; double m_characteristicCellSizeK; }; } // namespace cvf