mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 13:15:39 -04:00
marks
This commit is contained in:
parent
434dc1f30d
commit
facc1995e3
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue