[skip ci] removed # TODOs

This commit is contained in:
Rémi Delaporte-Mathurin 2022-11-18 09:03:35 -05:00 committed by GitHub
parent b874d83634
commit f60f95feb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,7 +165,7 @@ class StructuredMesh(MeshBase):
pass
@property
def vertices(self): # TODO needs changing
def vertices(self):
"""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): # TODO needs changing
def centroids(self):
"""Return coordinates of mesh element centroids.
Returns