GeometricalPredicates.jl
GeometricalPredicates.jl copied to clipboard
Check many points in one given triangle
Dear all, I just want to ask a simple question that if I want to check many points in one given triangle, what is the best way to implement it? It seems that there is no method matching Point(::Array{Float64,1}, ::Array{Float64,1}). The only way now I can try is giving a naive "for" loop.
the for loop will be fast, since the triangle has all possible pre-computations cached and done... I don;t think there's an optimization over that