(self, A)
| 2695 | return fc[unmasked_polys, :] |
| 2696 | |
| 2697 | def set_array(self, A): |
| 2698 | # docstring inherited |
| 2699 | prev_unmask = self._get_unmasked_polys() |
| 2700 | super().set_array(A) |
| 2701 | # If the mask has changed at all we need to update |
| 2702 | # the set of Polys that we are drawing |
| 2703 | if not np.array_equal(prev_unmask, self._get_unmasked_polys()): |
| 2704 | self._set_unmasked_verts() |
nothing calls this directly
no test coverage detected