diff --git a/dev/CheatSheet/index.html b/dev/CheatSheet/index.html index 900003e2..a1276c8f 100644 --- a/dev/CheatSheet/index.html +++ b/dev/CheatSheet/index.html @@ -4,7 +4,7 @@ c = new(name,center [x,y,z],radius, startAngle, endAngle) *Circular Arc* c = new(name, xEqn, yEqn, zEqn) *Parametric equation* c = new(name, dataFile) *Spline with data from a file* - c = new(name, nKnots, knotsMatrix) *Spline with given knot values*
Shown here is the use of the function new
, which is a shortcut to the full functions, e.g. newCircularArcCurve
, etc. which have the same arguments.
r = newRefinementCenter(name, center, gridSize, radius)
+ c = new(name, nKnots, knotsMatrix) *Spline with given knot values*
Shown here is the use of the function new
, which is a shortcut to the full functions, e.g. newCircularArcCurve
, etc. which have the same arguments.
r = newRefinementCenter(name, type, center, gridSize, radius)
r = newRefinementLine(name, type, startPoint, endPoint, gridSize, width)
add!(p, c) *Add outer boundary curve*
add!(p, c, <InnerBoundaryName>) *Add curve to an inner boundary*
add!(p, r) *Add refinement region*
@@ -18,4 +18,4 @@
remove!(p, name) *Curve in outer boundary*
remove!(p, name, innerBoundaryName) *Curve in inner boundary*
removeRefinementRegion!(p, name)
All items have set/get methods to edit them. Most actions have undo()
and redo()
. To find out what the next undo/redo actions are, use undoActionName()
and redoActionName()
to print them to the screen.
generate_mesh(p)
- remove_mesh!(p)
Settings
This document was generated with Documenter.jl version 0.27.25 on Tuesday 2 January 2024. Using Julia version 1.6.7.