Leonardo Laguna Ruiz

Results 46 comments of Leonardo Laguna Ruiz

This is exactly what I was looking for. Has it been any progress to merge/implement this feature in the main branch?

There's a short description of the ranges here: https://github.com/modlfo/vult/blob/master/examples/README.md

Seems like these are two different issues. In general, `w` should have a range from 0 to 1. However, within this range you may encounter instabilities because of the limitations...

There are two ways that you can do it depending on your needs. In situations when I have to allocate or reserve a big chunk of memory, for example when...

Some of the things that you mention could be achieved by creating a Vult library (a file) that declares the functions and makes it available to your code. One possible...

Finally I got a ESP32. I will test how thing work here when I have some time.

The way the compiler is architected is that rather than compiling/generating single files, a file and all it's dependencies are amalgamated into single file (or group of files, output.cpp and...

There's the function `pow(a,b)` It's undocumented. I added it not so long ago. Here's the part of the code that lists all the builtins. https://github.com/modlfo/vult/blob/master/src/core/env.ml#L593 I try to avoid it...

In general, you can add missing functions as follows: ``` external atan2(x:real, y:real) : real "atan2f"; ``` That adds the C++ `atan2f` and can be used for code generation. The...

Thanks for the report. I will fix the implementation and push the changes to master branch of the VCV Prototype soon.