Skip to content
Snippets Groups Projects
Commit c183d087 authored by Mark Olesen's avatar Mark Olesen
Browse files

blockMesh splineEdge - drop old names 'simpleSpline' and 'polySpline'

parent a19e488f
Branches
Tags
No related merge requests found
......@@ -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
......
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