Skip to content

Commit

Permalink
0.9.11 updates: Improved cmake support for WIN32/64 via MSVC.
Browse files Browse the repository at this point in the history
- Fix silly spelling mistakes!
  • Loading branch information
dengwirda committed Jun 23, 2019
1 parent 628c12b commit eed63e3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ This process will build a series of executables and shared libraries: `jigsaw` i

See `example.jig` for documentation on calling the command-line executables, and the headers in <a href="../master/inc/">`../jigsaw/inc/`</a> for details on the `API`.

### `Install via conda`
### `Using conda`

`JIGSAW` is also available as a `conda` environment. To install and use, follow the steps below:

Expand Down
18 changes: 9 additions & 9 deletions example.jig
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@

# ---> GEOM_FILE - 'GEOMNAME.MSH', a string containing the
# name of the geometry file (is required at input).
# See SAVEMSH for additional details regarding the cr-
# eation of *.MSH files.
#

GEOM_FILE = geo/bunny.msh
Expand Down Expand Up @@ -99,15 +97,15 @@

# ---> GEOM_ETA1 - {default=45deg} 1-dim. feature-angle,
# features are located between any neighbouring
# "edges" that subtend angles less than ETA1 deg.
# edges that subtend angles less than ETA1 degrees.
#

# GEOM_ETA1 = 60


# ---> GEOM_ETA2 - {default=45deg} 2-dim. feature angle,
# features are located between any neighbouring
# "faces" that subtend angles less than ETA2 deg.
# faces that subtend angles less than ETA2 degrees.
#

# GEOM_ETA2 = 60
Expand All @@ -122,13 +120,15 @@
# name of the mesh-size file (is required at input).
# The mesh-size function is specified as a general pi-
# ecewise linear function, defined at the vertices of
# an unstructured triangulation. See SAVEMSH for addi-
# tional details.
# an unstructured triangulation or on a structured
# grid.
#

# HFUN_FILE = *.msh


# ---> HFUN_SCAL - {default='relative'} scaling type for
# mesh-size fuction. HFUN_SCAL='relative' interprets
# mesh-size function. HFUN_SCAL='relative' interprets
# mesh-size values as percentages of the (mean) length
# of the axis-aligned bounding-box (AABB) associated
# with the geometry. HFUN_SCAL='absolute' interprets
Expand Down Expand Up @@ -167,7 +167,7 @@
# MESH_DIMS = 2


# ---> MESH_KERN - {default='delfront'} meshing kernal,
# ---> MESH_KERN - {default='delfront'} meshing kernel,
# choice of the standard Delaunay-refinement algorithm
# (KERN='delaunay') or the Frontal-Delaunay method
# (KERN='delfront').
Expand Down Expand Up @@ -287,7 +287,7 @@
# ---> MESH_VOL3 - {default=0.00} min. volume-length ratio
# for 3-tria elements. 3-tria elements are refined
# until the volume-length ratio exceeds VOL3. Can be
# used to supress "sliver" elements.
# used to suppress "sliver" elements.
#

# MESH_VOL3 = 0.10
Expand Down
4 changes: 2 additions & 2 deletions inc/jigsaw_jig_t.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
/*
--------------------------------------------------------
* HFUN_SCAL - {default = 'relative'} scaling type for
* mesh-size fuction. HFUN_SCAL='relative' interprets
* mesh-size function. HFUN_SCAL='relative' interprets
* mesh-size values as percentages of the (mean) length
* of the axis-aligned bounding-box (AABB) associated
* with the geometry. HFUN_SCAL = 'absolute' interprets
Expand Down Expand Up @@ -176,7 +176,7 @@

/*
--------------------------------------------------------
* MESH_KERN - {default = 'delfront'} meshing kernal,
* MESH_KERN - {default = 'delfront'} meshing kernel,
* choice of the standard Delaunay-refinement algorithm
* (KERN='delaunay') or the Frontal-Delaunay method
* (KERN='delfront').
Expand Down

0 comments on commit eed63e3

Please sign in to comment.