///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2020 Equinor ASA // // ResInsight 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. // // ResInsight 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 "cvfVector3.h" #include #include #include #include class RigGocadData; class RifSurfaceImporter { public: static void readGocadFile( const QString& filename, RigGocadData* gocadData ); static std::pair, std::vector> readPetrelFile( const QString& filename ); static std::pair, std::vector> readOpenWorksXyzFile( const QString& filename, double preferredPointDistance ); private: static bool generateTriangleIndices( const std::vector>& indexToPointData, const size_t& i, const size_t& j, std::vector& triangleIndices, unsigned resolution = 1 ); static bool vectorFuzzyCompare( const cvf::Vec2d& vector1, const cvf::Vec2d& vector2, double epsilon = std::numeric_limits::epsilon() ); };