Pascal van der Heiden
Results
3
issues of
Pascal van der Heiden
When using integer values such as in this example: ```cpp auto t = tweeny::from(130).to(130).during(300).to(80).during(400); ``` The compiler issues warnings for the conversion from int to float for all the different...
This implements my request #29
It would be nice to have a method to wait at a specific point. For example, right now I do: ```cpp auto t = tweeny::from(130).to(130).during(300).to(80).during(400); ``` But it would be...