mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
66 lines
1.7 KiB
C++
66 lines
1.7 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: vtkSMBooleanDomain.cxx
|
|
|
|
Copyright (c) Kitware, Inc.
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
#include "vtkSMBooleanDomain.h"
|
|
|
|
#include "vtkObjectFactory.h"
|
|
#include "vtkPVXMLElement.h"
|
|
#include "vtkSMPropertyHelper.h"
|
|
|
|
vtkStandardNewMacro(vtkSMBooleanDomain);
|
|
|
|
//---------------------------------------------------------------------------
|
|
vtkSMBooleanDomain::vtkSMBooleanDomain()
|
|
{
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
vtkSMBooleanDomain::~vtkSMBooleanDomain()
|
|
{
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
int vtkSMBooleanDomain::IsInDomain(vtkSMProperty* property)
|
|
{
|
|
if (this->IsOptional)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
if (!property)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int value = vtkSMPropertyHelper(property).GetAsInt();
|
|
return (value == 0 || value == 1)? 1 : 0;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
void vtkSMBooleanDomain::SetAnimationValue(vtkSMProperty* property,
|
|
int idx, double value)
|
|
{
|
|
if (!property)
|
|
{
|
|
return;
|
|
}
|
|
vtkSMPropertyHelper(property).Set(idx, static_cast<int>(value));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
void vtkSMBooleanDomain::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os, indent);
|
|
}
|