------------------------------------------------------------------------------ Turn off copying of all data.
| 92 | //------------------------------------------------------------------------------ |
| 93 | // Turn off copying of all data. |
| 94 | void vtkDataSetAttributes::CopyAllOff(int ctype) |
| 95 | { |
| 96 | this->vtkFieldData::CopyAllOff(); |
| 97 | this->SetCopyScalars(0, ctype); |
| 98 | this->SetCopyVectors(0, ctype); |
| 99 | this->SetCopyNormals(0, ctype); |
| 100 | this->SetCopyTCoords(0, ctype); |
| 101 | this->SetCopyTensors(0, ctype); |
| 102 | this->SetCopyGlobalIds(0, ctype); |
| 103 | this->SetCopyPedigreeIds(0, ctype); |
| 104 | this->SetCopyTangents(0, ctype); |
| 105 | this->SetCopyRationalWeights(0, ctype); |
| 106 | this->SetCopyHigherOrderDegrees(0, ctype); |
| 107 | this->SetCopyProcessIds(0, ctype); |
| 108 | } |
| 109 | |
| 110 | //------------------------------------------------------------------------------ |
| 111 | // Deep copy of data (i.e., create new data arrays and |
nothing calls this directly
no test coverage detected