Skip to content
Snippets Groups Projects
Commit f2acb355 authored by mattijs's avatar mattijs
Browse files

ENH: conformationSurfaces.H: access to locationInMesh

parent b1122c20
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -136,6 +136,9 @@ public:
//- Return the object holding the feature points and edges
inline const PtrList<extendedFeatureEdgeMesh>& features() const;
//- Return the location to mesh
inline const point& locationInMesh() const;
//- Return the surface indices
inline const labelList& surfaces() const;
......
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -38,6 +38,12 @@ Foam::conformationSurfaces::features() const
}
const Foam::point& Foam::conformationSurfaces::locationInMesh() const
{
return locationInMesh_;
}
const Foam::labelList& Foam::conformationSurfaces::surfaces() const
{
return surfaces_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment