blockMesh splineEdge - drop old names 'simpleSpline' and 'polySpline'
This commit is contained in:
parent
a19e488f1e
commit
c183d0875d
@ -40,25 +40,6 @@ namespace Foam
|
||||
splineEdge,
|
||||
Istream
|
||||
);
|
||||
|
||||
// compatibility with old names
|
||||
addNamedToRunTimeSelectionTable
|
||||
(
|
||||
curvedEdge,
|
||||
splineEdge,
|
||||
Istream,
|
||||
simpleSpline
|
||||
);
|
||||
|
||||
// compatibility with old names
|
||||
addNamedToRunTimeSelectionTable
|
||||
(
|
||||
curvedEdge,
|
||||
splineEdge,
|
||||
Istream,
|
||||
polySpline
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -85,7 +66,7 @@ Foam::splineEdge::splineEdge(const pointField& points, Istream& is)
|
||||
token t(is);
|
||||
is.putBack(t);
|
||||
|
||||
// compatibility - might also have start/end tangents - discard them
|
||||
// discard unused start/end tangents
|
||||
if (t == token::BEGIN_LIST)
|
||||
{
|
||||
vector tangent0Ignored(is);
|
||||
|
@ -28,10 +28,6 @@ Class
|
||||
Description
|
||||
A curvedEdge interface for Catmull-Rom splines.
|
||||
|
||||
Note
|
||||
For compatibility, also accepts the type names 'polySpline' and
|
||||
'simpleSpline'.
|
||||
|
||||
SourceFiles
|
||||
splineEdge.C
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user