-------------------------------------------------------------------
| 1071 | |
| 1072 | //------------------------------------------------------------------- |
| 1073 | void vtkMapper::ClearColorArrays() |
| 1074 | { |
| 1075 | if (this->Colors) |
| 1076 | { |
| 1077 | this->Colors->Delete(); |
| 1078 | this->Colors = nullptr; |
| 1079 | } |
| 1080 | if (this->ColorCoordinates) |
| 1081 | { |
| 1082 | this->ColorCoordinates->Delete(); |
| 1083 | this->ColorCoordinates = nullptr; |
| 1084 | } |
| 1085 | if (this->ColorTextureMap) |
| 1086 | { |
| 1087 | this->ColorTextureMap->Delete(); |
| 1088 | this->ColorTextureMap = nullptr; |
| 1089 | } |
| 1090 | } |
| 1091 | |
| 1092 | //------------------------------------------------------------------- |
| 1093 | vtkUnsignedCharArray* vtkMapper::GetColorMapColors() |
no test coverage detected