File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ installed using Julia on an internet-connected computer.
1010[ ** Unitful.jl** ] ( https://github.com/PainterQubits/Unitful.jl ) which provide
1111support for geometries and physical units, respectively.
1212
13- ** MeshIntegrals.jl** can be installed while using Julia by entering ` pkg ` mode
13+ ** MeshIntegrals.jl** can be installed from the Julia REPL by entering ` pkg ` mode
1414with the ` ] ` key and ` add ` ing it by name
1515``` julia-repl
1616pkg> add MeshIntegrals
@@ -24,7 +24,7 @@ Pkg.add("MeshIntegrals")
2424
2525## Basic Usage
2626
27- Usage of ** MeshIntegrals** typically also involves using ** Meshes** and ** Unitful** ,
27+ Usage of ** MeshIntegrals.jl ** typically also involves using ** Meshes.jl ** and ** Unitful.jl ** ,
2828so all three packages will be used in this example.
2929
3030``` julia
@@ -40,7 +40,7 @@ curve whose path approximates a sine-wave on the xy-plane.
4040
4141``` julia
4242N = 361 # number of control points
43- xs = range (- π, π, length= N) # x will be bounded [-π, π] meters
43+ xs = range (- π, π, length= N) # x will be bounded in [-π, π] meters
4444curve = Meshes. BezierCurve ([Point (x * u " m" , sin (x) * u " m" , 0.0 u " m" ) for x in xs])
4545```
4646
You can’t perform that action at this time.
0 commit comments