----------------------------------------------------------------------------
| 769 | |
| 770 | //---------------------------------------------------------------------------- |
| 771 | void vtkHyperTreeGridRepresentation::SetRepeatTextures(bool rep) |
| 772 | { |
| 773 | if (this->Actor->GetTexture()) |
| 774 | { |
| 775 | this->Actor->GetTexture()->SetRepeat(rep); |
| 776 | } |
| 777 | std::map<std::string, vtkTexture*>& tex = this->Actor->GetProperty()->GetAllTextures(); |
| 778 | for (auto t : tex) |
| 779 | { |
| 780 | t.second->SetRepeat(rep); |
| 781 | } |
| 782 | this->RepeatTextures = rep; |
| 783 | } |
| 784 | |
| 785 | //---------------------------------------------------------------------------- |
| 786 | void vtkHyperTreeGridRepresentation::SetInterpolateTextures(bool rep) |
nothing calls this directly
no test coverage detected