Skip to content

Commit

Permalink
Merge pull request #15 from jbytecode/main
Browse files Browse the repository at this point in the history
add docstring for loftlinear
  • Loading branch information
Kevin-Mattheus-Moerman authored Mar 5, 2024
2 parents 561fadb + 9b87e52 commit 686d6ef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Comodo.jl

___________________

10 changes: 10 additions & 0 deletions src/functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1535,6 +1535,16 @@ function circlepoints(f::FunctionType,n; dir=:acw) where {FunctionType <: Functi
end
end

"""
loftlinear(V1,V2;num_steps=2,close_loop=true,face_type=:tri)
Apply loftlinear for given vectors
# Arguments:
- `V1::Vector`: n-vector
- `V2::Vector`: n-vector
"""
function loftlinear(V1,V2;num_steps=2,close_loop=true,face_type=:tri)
#=
The `loftlinear` function spans a surface from input curve `V1` to curve
Expand Down

0 comments on commit 686d6ef

Please sign in to comment.