mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
GIT: Housekeeping
This commit is contained in:
@ -1357,12 +1357,6 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
string line;
|
string line;
|
||||||
inFile.getLine(line);
|
inFile.getLine(line);
|
||||||
|
|
||||||
if (line.empty())
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
IStringStream lineStr(line);
|
IStringStream lineStr(line);
|
||||||
|
|
||||||
// This implies the end of while has been reached
|
// This implies the end of while has been reached
|
||||||
|
|||||||
@ -217,9 +217,7 @@ Foam::functionObjects::runTimePostPro::surface::surface
|
|||||||
edgeColour_(nullptr),
|
edgeColour_(nullptr),
|
||||||
surfaceActor_(),
|
surfaceActor_(),
|
||||||
edgeActor_(),
|
edgeActor_(),
|
||||||
maxGlyphLength_(0),
|
maxGlyphLength_(0)
|
||||||
backFaceCulling_(false),
|
|
||||||
frontFaceCulling_(true)
|
|
||||||
{
|
{
|
||||||
surfaceActor_ = vtkSmartPointer<vtkActor>::New();
|
surfaceActor_ = vtkSmartPointer<vtkActor>::New();
|
||||||
edgeActor_ = vtkSmartPointer<vtkActor>::New();
|
edgeActor_ = vtkSmartPointer<vtkActor>::New();
|
||||||
@ -246,9 +244,6 @@ Foam::functionObjects::runTimePostPro::surface::surface
|
|||||||
{
|
{
|
||||||
dict.readEntry("maxGlyphLength", maxGlyphLength_);
|
dict.readEntry("maxGlyphLength", maxGlyphLength_);
|
||||||
}
|
}
|
||||||
|
|
||||||
dict.readIfPresent("backFaceCulling", backFaceCulling_);
|
|
||||||
dict.readIfPresent("frontFaceCulling", frontFaceCulling_);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -191,12 +191,6 @@ protected:
|
|||||||
//- Max glyph length for representation type rtGlyph
|
//- Max glyph length for representation type rtGlyph
|
||||||
scalar maxGlyphLength_;
|
scalar maxGlyphLength_;
|
||||||
|
|
||||||
//- Back face culling option; default = off
|
|
||||||
bool backFaceCulling_;
|
|
||||||
|
|
||||||
//- Front face culling option; default = on
|
|
||||||
bool frontFaceCulling_;
|
|
||||||
|
|
||||||
|
|
||||||
// Protected Member Functions
|
// Protected Member Functions
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user