clang-format: Set column width to 140

* Set column width to 140
* Use c++20
* Remove redundant virtual
This commit is contained in:
Magne Sjaastad
2023-02-26 10:48:40 +01:00
committed by GitHub
parent 8768e186d8
commit f8c5cf389f
1535 changed files with 10456 additions and 19398 deletions

View File

@@ -31,10 +31,10 @@ class RigGocadData;
class RifSurfaceImporter
{
public:
static void readGocadFile( const QString& filename, RigGocadData* gocadData );
static void readGocadFile( const QString& filename, RigGocadData* gocadData );
static std::pair<std::vector<cvf::Vec3d>, std::vector<unsigned>> readPetrelFile( const QString& filename );
static std::pair<std::vector<cvf::Vec3d>, std::vector<unsigned>>
readOpenWorksXyzFile( const QString& filename, double preferredPointDistance );
static std::pair<std::vector<cvf::Vec3d>, std::vector<unsigned>> readOpenWorksXyzFile( const QString& filename,
double preferredPointDistance );
private:
static bool generateTriangleIndices( const std::vector<std::vector<unsigned>>& indexToPointData,
@@ -42,7 +42,6 @@ private:
const size_t& j,
std::vector<unsigned>& triangleIndices,
unsigned resolution = 1 );
static bool vectorFuzzyCompare( const cvf::Vec2d& vector1,
const cvf::Vec2d& vector2,
double epsilon = std::numeric_limits<double>::epsilon() );
static bool
vectorFuzzyCompare( const cvf::Vec2d& vector1, const cvf::Vec2d& vector2, double epsilon = std::numeric_limits<double>::epsilon() );
};