Adjust an argument order in RigWellPathGeometryTools

This commit is contained in:
Jacob Støren
2018-04-09 12:51:44 +02:00
parent ee9e9b2989
commit fee549de35
4 changed files with 7 additions and 5 deletions

View File

@@ -44,6 +44,6 @@ public:
VertexOrganization organization);
static void calculatePairsOfClosestSamplingPointsAlongWellPath(const RigWellPath* wellPathGeometry,
std::vector<cvf::Vec3d>* closestWellPathPoints,
std::vector<cvf::Vec3d>& points);
const std::vector<cvf::Vec3d>& points,
std::vector<cvf::Vec3d>* closestWellPathPoints);
};