Júlio Hoffimann
Júlio Hoffimann
Assume there is a file `foo.jl` on disk: ```julia include("foo
Do we have a distribution type in Distributions.jl with similar behavior? https://github.com/juliohm/GeoStatsBase.jl/blob/master/src/distributions.jl Also, do we have some `transform` API as above to convert samples from one univariate distribution to another?...
We fixed the random number generator in our tests for reproducibility and uncovered a bug in our `FIST` discretization. MWE: The `discretize` call below is hanging: ```julia using Meshes using...
This issue tracks our efforts to improve the performance of different algorithms and data structures implemented in the project. The public API is stabilizing and there is only one major...
Issue to track our efforts adding more primitives. - [x] Disk - [x] Circle - [x] Cone - [x] ConeSurface - [x] Torus - [x] Frustum - [ ] Tube...
There are multiple algorithms in the literature that we can absorb later: - https://www.sciencedirect.com/science/article/pii/S0925772101000128?via%3Dihub - https://arxiv.org/abs/1207.3502 - https://www.mdpi.com/2073-8994/10/10/477 Saving the list for future reference.
- [ ] Weiler-Atherton: https://dl.acm.org/doi/pdf/10.1145/563858.563896 - [ ] Greiner-Hormann: https://dl.acm.org/doi/pdf/10.1145/274363.274364 - [ ] Vatti: https://dl.acm.org/doi/pdf/10.1145/129902.129906 - [ ] Martínez: https://www.sciencedirect.com/science/article/abs/pii/S0098300408002793
In #353 some cleaning functions were proposed to eliminate vertices of a mesh that are orphan or to "merge" them somehow. Instead of providing this functionality as isolated functions, we...
There are various methods in the literature to compute the "concave" hull of a 2D point set: https://www.researchgate.net/publication/312373158_A_Concave_Hull_Based_Algorithm_for_Object_Shape_Reconstruction We can use ConcaveHull.jl as a test bed, it implements the method...
Moving the discussion from Zulip, where we want to address a few issues regarding our current angle implementations: 1. Improving the numerical robustness of the implementation. 2. Defining the open/closed...