Mauro Mombelli
Mauro Mombelli
The size() function is required to be in the function "settings()" as https://processing.org/reference/settings_.html I have no idea how to make dual support for processing 2 and 3, but as processing...
as of the work from @alamaz, it could be possible to create a platform to share the creature. My proposal is the following: the current best 5 creature FOR TYPE...
Calculating the root is a computational heavy operation; you should avoid it if possible, and most of the case it is. When checking 2 distances, using their square lead to...
hi, could you please extract the logic of the NN from the specific logic of the steering game? if you put it in another project, then you can use that...
``` let mut ahrs = Madgwick::::new(1.0/1000.0, 0.1); let gyro = Vector3::new(0.0, 0.0, 0.0); let acce = Vector3::new(0.0, 0.0, 1.0); let quat = ahrs.update_imu( &gyro, &acce, ).unwrap(); ``` `quat` will be...
Hi, looking at the Release page or the git tag, only version 1.9 is tagged and also the realease beta is older than that release. On the other hand the...
Hi, the "Stable release" 1.9 has a compilation error in Firmware/radio/Radio.c as the line ``` static void set_frequency_registers(uint32_t frequency); static uint32_t scale_uint32(uint32_t value, uint32_t scale); ``` are missing the __pdata
On the "full install guide" please change git clone https://github.com/andrewd18/df-lnp-installer.git with git clone -b master --depth 1 https://github.com/andrewd18/df-lnp-installer.git so user will not download history and uneeded banch. plaese do the...