----------------------------------------------------------------------------
| 1298 | |
| 1299 | //---------------------------------------------------------------------------- |
| 1300 | void vtkGeometryRepresentation::SetRepeatTextures(bool rep) |
| 1301 | { |
| 1302 | if (this->Actor->GetTexture()) |
| 1303 | { |
| 1304 | this->Actor->GetTexture()->SetRepeat(rep); |
| 1305 | } |
| 1306 | std::map<std::string, vtkTexture*>& tex = this->Actor->GetProperty()->GetAllTextures(); |
| 1307 | for (auto t : tex) |
| 1308 | { |
| 1309 | t.second->SetRepeat(rep); |
| 1310 | } |
| 1311 | this->RepeatTextures = rep; |
| 1312 | } |
| 1313 | |
| 1314 | void vtkGeometryRepresentation::SetInterpolateTextures(bool rep) |
| 1315 | { |
nothing calls this directly
no test coverage detected