Skip to content
Snippets Groups Projects
Commit 1a6824f9 authored by Andrew Heather's avatar Andrew Heather
Browse files

Merge remote-tracking branch 'origin/master' into develop

parents 38334ed1 989fda3b
Branches
Tags
No related merge requests found
......@@ -6,6 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -78,18 +79,18 @@ Foam::point Foam::BSpline::position
const point& p0 = points()[segment];
const point& p1 = points()[segment+1];
// special cases - no calculation needed
if (mu <= 0.0)
// Special cases - no calculation needed
// Note: only checks at overall endpoints
if ((segment == 0) && (mu <= 0.0))
{
return p0;
}
else if (mu >= 1.0)
else if ((segment == nSegments() - 1) && (mu >= 1.0))
{
return p1;
}
// determine the end points
// Determine the end points
point e0;
point e1;
......@@ -113,7 +114,6 @@ Foam::point Foam::BSpline::position
e1 = points()[segment+2];
}
return 1.0/6.0 *
(
( e0 + 4*p0 + p1 )
......
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