diff --git a/openmc/mesh.py b/openmc/mesh.py index a4c50a608..4059fee2d 100644 --- a/openmc/mesh.py +++ b/openmc/mesh.py @@ -165,7 +165,7 @@ class StructuredMesh(MeshBase): pass @property - def vertices(self): + def vertices(self): # TODO needs changing """Return coordinates of mesh vertices. Returns @@ -178,7 +178,7 @@ class StructuredMesh(MeshBase): return np.stack(np.meshgrid(*self._grids, indexing='ij'), axis=-1) @property - def centroids(self): + def centroids(self): # TODO needs changing """Return coordinates of mesh element centroids. Returns