Steffen
Steffen
I was looking through the code, and I was wondering if [this line](https://github.com/JuliaDynamics/Agents.jl/blob/480549d35ed6b400d148fea8a5a6873ae6828fa6/src/spaces/continuous.jl#L276 ) in the elastic collision function ```julia dx = a.pos .- b.pos ``` is false for periodic...
Hi, for a recent crash course, I created this fork and added syntax highlighting: https://steffenpl.github.io/Julia-Cheat-Sheet/ Shall I create a pull request? PS: I also added content to the cheat sheet,...
The following script doesn't work on my computer ```julia # script.jl println(ARGS) ``` ```bat julia --project --startup-file=no -e "using DaemonMode; runargs()" .\script.jl "D:\w" PAUSE ``` The error message is ```...
**TLTR** *I would like to implement a problem type for differential inclusions (aka differential equations with inequalities). Is that welcome/fitting to SciML?* # Terminology There are millions of alternative formulations...
Would it be possible to add a button (maybe in the menu) to go through the entire current svg and recompile all elements which were generated with textext? The use...
Hi, I would be interested in creating a Julia wrapper for parts of Siconos. At the moment, the most relevant part for me would be **siconos/numerics (C)**, but later I...
Hello, Thanks for your amazing package! I wanted to ask if it would be possible to provide a mechanism to use `torch.float32` as `dtype` for some of the adaptive solvers....
Hi, I wanted to ask if it is possible to make this work ```julia @concrete terse mutable struct Foo const A B end z = Foo(1) # this works, leaves...
Just a small unimportant note: The third example has a typo: ``` seg->setOpacity(128| ```
Dear NVIDIA-Warp Team, I'm working on a Julia package for spatial hash tables ([SpatialHashTables.jl](https://github.com/SteffenPL/SpatialHashTables.jl)). After reading your code in [warp/native/hashgrid.h](https://github.com/NVIDIA/warp/blob/3ed2ceab824b65486c5204d2a7381d37b79fc314/warp/native/hashgrid.h), [hashgrid.cpp](https://github.com/NVIDIA/warp/blob/3ed2ceab824b65486c5204d2a7381d37b79fc314/warp/native/hashgrid.cpp) and [hashgrid.cu](https://github.com/NVIDIA/warp/blob/main/warp/native/hashgrid.cu) it is hard to unsee certain tricks....