set_center_coordinate_grid()
Description: Creates a coordinate grid centered at the given point.
Usage
cg = set_center_coordinate_grid(delta, x, y, z, nx, ny, nz);
Arguments
- delta An integer or vector ([dx dy dz]) representing the difference between two points in the grid.
- x The x coordinate of the center of the grid.
- y The y coordinate of the center of the grid.
- z The z coordinate of the center of the grid.
- nx The number of points in the x direction of the grid.
- ny The number of points in the y direction of the grid.
- nz The number of points in the z direction of the grid.
Output Parameters
- cg A coordinate grid struct with the given center.
Notes
If nx, ny, or nz is set to one, there will be no points in
that direction of the grid, resulting in a coordinate plane or coordinate line instead of a 3-d grid.

