From 9067275b6fd9d229765cc0df0b4b4dfeaabd8ddf Mon Sep 17 00:00:00 2001 From: Ryan Wollaeger Date: Thu, 22 Jul 2021 08:37:33 -0600 Subject: [PATCH] Attempt to fix markdown errors shown by Linter. --- src/mesh/python/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mesh/python/README.md b/src/mesh/python/README.md index c1d81a011..cf1aa207a 100644 --- a/src/mesh/python/README.md +++ b/src/mesh/python/README.md @@ -13,10 +13,11 @@ Currently, there is a script called `x3d_generator.py`, which takes command-line input to instantiate a mesh object from one of the mesh_type classes and outputs a set of X3D files (main mesh file and boundary node files) of the mesh object. -## Example Usage: +## Example Usage To create X3D files for a 4x4x4 3D orthogonal structured mesh on domain (x,y,z) in [0,1]x[0,2]x[0,4]: -``` + +```bash $ ./x3d_generator.py --mesh_type orth_3d_mesh --num_per_dim 4 4 4 --bnd_per_dim 0 1 0 2 0 4 ```