mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: conformationSurfaces.H: access to locationInMesh
This commit is contained in:
@ -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 | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -136,6 +136,9 @@ public:
|
|||||||
//- Return the object holding the feature points and edges
|
//- Return the object holding the feature points and edges
|
||||||
inline const PtrList<extendedFeatureEdgeMesh>& features() const;
|
inline const PtrList<extendedFeatureEdgeMesh>& features() const;
|
||||||
|
|
||||||
|
//- Return the location to mesh
|
||||||
|
inline const point& locationInMesh() const;
|
||||||
|
|
||||||
//- Return the surface indices
|
//- Return the surface indices
|
||||||
inline const labelList& surfaces() const;
|
inline const labelList& surfaces() const;
|
||||||
|
|
||||||
|
|||||||
@ -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 | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
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
|
const Foam::labelList& Foam::conformationSurfaces::surfaces() const
|
||||||
{
|
{
|
||||||
return surfaces_;
|
return surfaces_;
|
||||||
|
|||||||
Reference in New Issue
Block a user