Ed Schmerling

Results 7 issues of Ed Schmerling

Relatively straightforward changes to the inrange methods; I also moved the `skip` check up in `add_points_knn!` (https://github.com/schmrlng/NearestNeighbors.jl/blob/3657a02de0c8f78f12c2f797b8b144830509eae8/src/tree_ops.jl#L93) to potentially save an `evaluate` call.

I have some code that contains usages of `copysign` and `flipsign`; rather than replacing these calls with `sign`-based equivalents I was hoping to add support for `copysign` and `flipsign` to...

It seems that the continuous collision checking mode employed by [omplapp](https://github.com/ompl/omplapp/) is CCDC_CONSERVATIVE_ADVANCEMENT (see [FCLMethodWrapper.h#L117](https://github.com/ompl/omplapp/blob/master/src/omplapp/geometry/detail/FCLMethodWrapper.h#L117)), but in my own tests with simple box-box translation collisions, I can't get this mode...

When defining constraints like `@constraint(m, v >= 0)` for `Vector`-valued `v` on Julia 0.7 we get this deprecation warning ``` ┌ Warning: `a::AbstractArray - b::Number` is deprecated, use `a .-...

I feel like `SUnitRange` is useful enough (especially for slicing other `StaticArray`s) to merit exporting.

feature
design

When using [ImmutableArrays.jl](https://github.com/JuliaGeometry/ImmutableArrays.jl), the fact that everything is a subtype of Base.AbstractArray makes the various concatenation operations work automatically (promoting everything to a dense array, which seems reasonable when you're...

Building upon #59 and #60, this PR contains two commits: - [Ensure attribute unique_ids are always unique](https://github.com/seung-lab/DracoPy/commit/0cfc95a37193ce1b94b6d1e18ede68c634ffe947) - Fixes an issue where `unique_id`s can be duplicated between native attributes (i.e.,...

bug
enhancement