------------------------------------------------------------------------------ Turn on copying of all data.
| 74 | //------------------------------------------------------------------------------ |
| 75 | // Turn on copying of all data. |
| 76 | void 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. |
nothing calls this directly
no test coverage detected