(self)
| 268 | |
| 269 | @property |
| 270 | def element_volumes(self): |
| 271 | if self.num_voxels == 0: |
| 272 | return self.get_attribute("face_area") |
| 273 | else: |
| 274 | return self.get_attribute("voxel_volume") |
| 275 | |
| 276 | @property |
| 277 | def attribute_names(self): |
nothing calls this directly
no test coverage detected