Grid¶
-
class
rips.
Grid
(index, case, channel)¶ Bases:
object
Grid Information. Created by methods in Case
rips.case.grid()
rips.case.grids()
Methods Summary
cell_centers
()The cell center for all cells in given grid cell_centers_async
()The cells center for all cells in given grid async. cell_corners
()The cell corners for all cells in given grid cell_corners_async
()The cell corners for all cells in given grid, async. dimensions
()The dimensions in i, j, k direction Methods Documentation
-
cell_centers
()¶ The cell center for all cells in given grid
Returns: class with double attributes x, y, x giving cell centers Return type: List of Vec3d
-
cell_centers_async
()¶ The cells center for all cells in given grid async.
Returns: class with double attributes x, y, x giving cell centers Return type: Iterator to a list of Vec3d
-
cell_corners
()¶ The cell corners for all cells in given grid
Returns: a class with Vec3d for each corner (c0, c1.., c7) Return type: list of CellCorners
-
cell_corners_async
()¶ The cell corners for all cells in given grid, async.
Returns: a class with Vec3d for each corner (c0, c1.., c7) Return type: iterator to a list of CellCorners
-
dimensions
()¶ The dimensions in i, j, k direction
Returns: class with integer attributes i, j, k giving extent in all three dimensions. Return type: Vec3i
-