Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/bamg/include/ConservativeRemapping.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ inline void checkTriangle(BamgMesh* bamgmesh, std::vector<double> const &gridCor
inline bool visited(int current_triangle, std::vector<int> const &triangles);

// Check if points are inside polygon
inline bool checkIfInside(std::vector<double> const &vertx, std::vector<double> const &verty, double testx, double testy);
inline bool checkIfInside(const std::vector<double>& vertx, const std::vector<double>& verty, double testx, double testy, bool inclusive);

// Check for intersection and add intersecting points to the list
inline bool checkIfIntersecting(double X, double Y, double Xnext, double Ynext, std::vector<double> const &gridCornerX, std::vector<double> const &gridCornerY, // inputs
Expand Down
Loading