mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: cleanup ensight surface reader (#2535)
- some central (core) bits under fileFormats, - general surface reading relocated from sampling to surfMesh since it does not use any sampling-specific components and will permit re-use in meshTools (for example) - remove old mask, subDir methods from ensightFile which were previously relocated to ensightCase - improve handling of 'undef' values when generating and reading, respect Ensight component ordering when reading.
This commit is contained in:
@ -31,7 +31,7 @@ License
|
||||
|
||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||
|
||||
void Foam::ensightGeoFile::initialize()
|
||||
void Foam::ensightGeoFile::init()
|
||||
{
|
||||
writeBinaryHeader();
|
||||
|
||||
@ -61,7 +61,7 @@ Foam::ensightGeoFile::ensightGeoFile
|
||||
:
|
||||
ensightFile(pathname, fmt)
|
||||
{
|
||||
initialize();
|
||||
init();
|
||||
}
|
||||
|
||||
|
||||
@ -74,7 +74,7 @@ Foam::ensightGeoFile::ensightGeoFile
|
||||
:
|
||||
ensightFile(path, name, fmt)
|
||||
{
|
||||
initialize();
|
||||
init();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user