#4683 clang-format on all files in ApplicationCode

This commit is contained in:
Magne Sjaastad
2019-09-06 10:40:57 +02:00
parent 3a317504bb
commit fe9e567825
2092 changed files with 117952 additions and 111846 deletions

View File

@@ -18,7 +18,6 @@
#pragma once
#include "cvfDrawableGeo.h"
#include "cvfDrawableVectors.h"
#include "cvfObject.h"
@@ -43,41 +42,41 @@ class RimWellPath;
class Riv3dWellLogDrawSurfaceGenerator : public cvf::Object
{
public:
Riv3dWellLogDrawSurfaceGenerator(RimWellPath* wellPath);
Riv3dWellLogDrawSurfaceGenerator( RimWellPath* wellPath );
bool createDrawSurface(const caf::DisplayCoordTransform* displayCoordTransform,
const cvf::BoundingBox& wellPathClipBoundingBox,
double planeAngle,
double planeOffsetFromWellPathCenter,
double planeWidth,
double samplingIntervalSize);
bool createDrawSurface( const caf::DisplayCoordTransform* displayCoordTransform,
const cvf::BoundingBox& wellPathClipBoundingBox,
double planeAngle,
double planeOffsetFromWellPathCenter,
double planeWidth,
double samplingIntervalSize );
void clearGeometry();
cvf::ref<cvf::DrawableGeo> background() const;
cvf::ref<cvf::DrawableGeo> border() const;
cvf::ref<cvf::DrawableGeo> background() const;
cvf::ref<cvf::DrawableGeo> border() const;
cvf::ref<cvf::DrawableVectors> curveNormalVectors() const;
const std::vector<cvf::Vec3d>& vertices() const;
private:
void createCurveNormalVectors(const caf::DisplayCoordTransform* displayCoordTransform,
size_t clipStartIndex,
double planeOffsetFromWellPathCenter,
double planeWidth,
double samplingIntervalSize,
const std::vector<cvf::Vec3d>& wellPathSegmentNormals);
void createBackground(cvf::Vec3fArray* vertexArray);
void createBorder(cvf::Vec3fArray* vertexArray);
void createCurveNormalVectors( const caf::DisplayCoordTransform* displayCoordTransform,
size_t clipStartIndex,
double planeOffsetFromWellPathCenter,
double planeWidth,
double samplingIntervalSize,
const std::vector<cvf::Vec3d>& wellPathSegmentNormals );
void createBackground( cvf::Vec3fArray* vertexArray );
void createBorder( cvf::Vec3fArray* vertexArray );
const RigWellPath* wellPathGeometry() const;
private:
caf::PdmPointer<RimWellPath> m_wellPath;
cvf::ref<cvf::DrawableGeo> m_background;
cvf::ref<cvf::DrawableGeo> m_border;
cvf::ref<cvf::DrawableVectors> m_curveNormalVectors;
caf::PdmPointer<RimWellPath> m_wellPath;
cvf::ref<cvf::DrawableGeo> m_background;
cvf::ref<cvf::DrawableGeo> m_border;
cvf::ref<cvf::DrawableVectors> m_curveNormalVectors;
std::vector<cvf::Vec3d> m_vertices;
std::vector<cvf::Vec3d> m_vertices;
};