Hello, I'd like to evaluate FReps at a vector of inputs as follows:
julia> using Descartes
julia> c = Circle(1.0)
Circle{Float64}(1.0)
julia> x = rand(2,10);
julia> FRep(c,x[1])
-0.8388503806040237
julia> f = FRep(c,x)
1.382979664762074
I would like the final output f to be a vector of size [1,10] with f[i] = FRep(c,x[i]). Could you help me get started with implementing this?