We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
meshbuilder
1 parent c14c1d5 commit 06e5413Copy full SHA for 06e5413
1 file changed
src/utils.jl
@@ -86,6 +86,7 @@ x = 0:0.1:1
86
y = 0:0.1:1
87
z = 0:0.1:1
88
mesh = meshbuilder(x, y, z) # returns a 3xN array of points
89
+```
90
"""
91
function meshbuilder(x::AbstractRange, y::AbstractRange, z::AbstractRange)::Array{Float64, 2}
92
nx, ny, nz = length(x), length(y), length(z)
0 commit comments