Skip to content
Snippets Groups Projects
Commit d25b19f6 authored by Mark OLESEN's avatar Mark OLESEN Committed by Andrew Heather
Browse files

ENH: add Barycentric2D outside() test

parent f94be1be
Branches
Tags
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | \\ / A nd | Copyright (C) 2019 OpenCFD Ltd.
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
| Copyright (C) 2017 OpenFOAM Foundation | Copyright (C) 2017 OpenFOAM Foundation
...@@ -27,8 +27,8 @@ Class ...@@ -27,8 +27,8 @@ Class
Foam::Barycentric2D Foam::Barycentric2D
Description Description
Templated 2D Barycentric derived from VectorSpace. Has 3 components, one of Templated 2D Barycentric derived from VectorSpace.
which is redundant. Has 3 components, one of which is redundant.
SourceFiles SourceFiles
Barycentric2DI.H Barycentric2DI.H
...@@ -89,15 +89,25 @@ public: ...@@ -89,15 +89,25 @@ public:
// Member Functions // Member Functions
// Access // Access
inline const Cmpt& a() const; inline const Cmpt& a() const;
inline const Cmpt& b() const; inline const Cmpt& b() const;
inline const Cmpt& c() const; inline const Cmpt& c() const;
// Edit
inline Cmpt& a();
inline Cmpt& b();
inline Cmpt& c();
// Tests
//- True if any coordinates are negative
inline bool outside() const;
inline Cmpt& a();
inline Cmpt& b();
inline Cmpt& c();
}; };
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | \\ / A nd | Copyright (C) 2019 OpenCFD Ltd.
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
| Copyright (C) 2017 OpenFOAM Foundation | Copyright (C) 2017 OpenFOAM Foundation
...@@ -97,6 +97,13 @@ inline Cmpt& Foam::Barycentric2D<Cmpt>::c() ...@@ -97,6 +97,13 @@ inline Cmpt& Foam::Barycentric2D<Cmpt>::c()
} }
template<class Cmpt>
inline bool Foam::Barycentric2D<Cmpt>::outside() const
{
return ((this->v_[A] < 0) || (this->v_[B]) < 0 || (this->v_[C] < 0));
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam namespace Foam
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment