Jaakko Ruohio

Results 53 comments of Jaakko Ruohio

Duplicate of https://github.com/SciML/ModelingToolkit.jl/issues/2453?

Wondering if ImageMagick and PNGFiles numbers are improving after Zlib_jll got -O3 flag in https://github.com/JuliaPackaging/Yggdrasil/pull/1051.

Retested quickly with Julia v1.10.2, LoopVectorization v0.12.169, Octavian v0.3.27, OrdinaryDiffEq v6.74.1, and I could not reproduce this issue anymore. Closing the issue.

https://docs.sciml.ai/ModelingToolkitStandardLibrary/stable/ docs still point to v.2.6.0. Building docs is broken, here `@named C = Gain(-1)` ``` ┌ Error: failed to run `@example` block in src\API\linear_analysis.md:93-96 │ ```@example LINEAR_ANALYSIS │ matrices_L...

Maybe we could explicitly create an empty geometry for polygon https://github.com/jaakkor2/GeometryBasics.jl/blob/emptypolygon/src/geointerface.jl#L94 and for multipolygon https://github.com/jaakkor2/GeometryBasics.jl/blob/emptypolygon/src/geointerface.jl#L116 But now I am a bit puzzled what the dimension should be since `GeometryBasics.ncoord` returns...

``` using GLMakie using GLMakie.Makie.GeometryBasics p1 = Polygon(Point2{Float64}[]) p2 = Polygon([Point2(NaN, NaN)]) ``` `plot(p1)` errors, but `plot(p2)` works.

Hosaki's function generated with https://www.codecogs.com/latex/eqneditor.php in gif format `f(x_1,x_2)=\left(1 - 8x_1 + 7x_1^2 - \frac{7}{3}x_1^3 + \frac{1}{4}x_1^4\right) x_2^2e^{-x_2}` ![CodeCogsEqn](https://user-images.githubusercontent.com/7318249/101294186-ff158080-3815-11eb-8c42-9cbb19041776.gif)

Any reason not to do the change? I agree that if up-vector flips, then left-right rotations do not feel natural.

You could add `Threads.@threads` in front of the first `for`-loop.

From https://trac.osgeo.org/geos/wiki/RFC3 > Function names in the new API will be updated with an _r, as is the familiar C standard for reentrant/thread safe versions. `GEOSIntersection_r` is used here https://github.com/JuliaGeo/LibGEOS.jl/blob/v0.6.8/src/geos_functions.jl#L423-L429...