MCPcopy Create free account
hub / github.com/Kitware/ParaView / FindDomain

Method FindDomain

Remoting/ServerManager/vtkSMProperty.h:730–741  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

728
729template <class DomainType>
730DomainType* vtkSMProperty::FindDomain()
731{
732 auto iter = vtkSmartPointer<vtkSMDomainIterator>::Take(this->NewDomainIterator());
733 for (iter->Begin(); !iter->IsAtEnd(); iter->Next())
734 {
735 if (DomainType* domain = DomainType::SafeDownCast(iter->GetDomain()))
736 {
737 return domain;
738 }
739 }
740 return nullptr;
741}
742#endif

Callers 15

fillPropertyListMethod · 0.60
applyDomainsMethod · 0.60
getProxyAsStateFunction · 0.60
updateProxyPropertiesFunction · 0.60
apply_domainsFunction · 0.60
updateMetadataMethod · 0.60
is_ctor_propertyMethod · 0.60
__init__Method · 0.60
get_valueMethod · 0.60
should_never_traceMethod · 0.60

Calls 5

NewDomainIteratorMethod · 0.95
BeginMethod · 0.45
IsAtEndMethod · 0.45
NextMethod · 0.45
GetDomainMethod · 0.45

Tested by

no test coverage detected