MCPcopy Create free account
hub / github.com/Kitware/VTK / CopyAllOn

Method CopyAllOn

Common/DataModel/vtkDataSetAttributes.cxx:76–90  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Turn on copying of all data.

Source from the content-addressed store, hash-verified

74//------------------------------------------------------------------------------
75// Turn on copying of all data.
76void vtkDataSetAttributes::CopyAllOn(int ctype)
77{
78 this->vtkFieldData::CopyAllOn();
79 this->SetCopyScalars(1, ctype);
80 this->SetCopyVectors(1, ctype);
81 this->SetCopyNormals(1, ctype);
82 this->SetCopyTCoords(1, ctype);
83 this->SetCopyTensors(1, ctype);
84 this->SetCopyGlobalIds(1, ctype);
85 this->SetCopyPedigreeIds(1, ctype);
86 this->SetCopyTangents(1, ctype);
87 this->SetCopyRationalWeights(1, ctype);
88 this->SetCopyHigherOrderDegrees(1, ctype);
89 this->SetCopyProcessIds(1, ctype);
90}
91
92//------------------------------------------------------------------------------
93// Turn off copying of all data.

Callers

nothing calls this directly

Calls 11

SetCopyScalarsMethod · 0.95
SetCopyVectorsMethod · 0.95
SetCopyNormalsMethod · 0.95
SetCopyTCoordsMethod · 0.95
SetCopyTensorsMethod · 0.95
SetCopyGlobalIdsMethod · 0.95
SetCopyPedigreeIdsMethod · 0.95
SetCopyTangentsMethod · 0.95
SetCopyProcessIdsMethod · 0.95

Tested by

no test coverage detected