ENH: documentation and input simplification for surfaceFeatureExtract

This commit is contained in:
Mark Olesen
2017-06-01 15:46:42 +02:00
parent a335ba6b6b
commit b312f0ba40
8 changed files with 294 additions and 209 deletions

View File

@ -27,6 +27,8 @@ Class
Description
Run-time selectable surface feature extraction - extract from surface.
Selectable as "extractFromSurface".
Mandatory dictionary entries: "includedAngle".
Optional dictionary entries: "geometricTestOnly".
@ -57,23 +59,18 @@ class extractFromSurface
{
public:
// Constructors
//- Construct from dictionary
extractFromSurface(const dictionary& dict);
//- Construct from dictionary
extractFromSurface(const dictionary& dict);
//- Destructor
virtual ~extractFromSurface();
//- Extracted features from surface
//- Features extracted from surface
virtual autoPtr<surfaceFeatures> features
(
const triSurface& surf
) const override;
};