Set attribute to the given value.
(self, name, val)
| 106 | (self.num_voxels, -1), order="C") |
| 107 | |
| 108 | def set_attribute(self, name, val): |
| 109 | """ Set attribute to the given value. |
| 110 | """ |
| 111 | self.__mesh.set_attribute(name, val.ravel(order="C")) |
| 112 | |
| 113 | def remove_attribute(self, name): |
| 114 | """ Remove attribute from mesh. |
no outgoing calls
no test coverage detected