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

Function CopyFieldOn

Common/DataModel/vtkFieldData.h:227–227  ·  view source on GitHub ↗

* Turn on/off the copying of the field specified by name. * During the copying/passing, the following rules are followed for each * array: * 1. If the copy flag for an array is set (on or off), it is applied. * This overrides rule 2. * 2. If CopyAllOn is set, copy the array. * If CopyAllOff is set, do not copy the array. */

Source from the content-addressed store, hash-verified

225 * If CopyAllOff is set, do not copy the array.
226 */
227 void CopyFieldOn(const char* name) { this->CopyFieldOnOff(name, 1); }
228 void CopyFieldOff(const char* name) { this->CopyFieldOnOff(name, 0); }
229
230 /**

Callers

nothing calls this directly

Calls 1

CopyFieldOnOffMethod · 0.45

Tested by

no test coverage detected