diff --git a/src/segment_integrator.jl b/src/segment_integrator.jl index 7b33a61..39964a9 100644 --- a/src/segment_integrator.jl +++ b/src/segment_integrator.jl @@ -252,8 +252,8 @@ function initialize!(O::SegmentIntegrator{T, UT}, sol; time = 0, kwargs...) wher end function integrator!( result::AbstractArray{Tv, 1}, - w::Array{Array{Tv, 1}, 1}, # world coordinates - b::Array{Array{Tv, 1}, 1}, # barycentric coordinates (w.r.t. item geometry) + w,#::Array{Array{Tv, 1}, 1}, # world coordinates + b,#::Array{Array{Tv, 1}, 1}, # barycentric coordinates (w.r.t. item geometry) item, # cell in which the segment lies (completely) ) where {Tv}