Maxim
Maxim
@nomeata This is how I decode the value: ``` Decode!(result.as_slice(), (f64, f64)).unwrap() ``` Encoding is done by `ic_cdk` as I just return the value from the `query` method: ``` #[query]...
Yes, it does work this way. Thank you. Can you explain, why in my code if I use `u64` instead of `f64` it works? I mean ``` #[query] fn my_method()...
Yes, I'm positive about it. I have at the same time methods returning `f64` and `u64` tuples.
I don't know much about how fonts work, but it seems that rustybuzz implement hinting even though they use `ttf-parser` for font loading. Or is it related to performance considerations?
Yeah, sorry, I completely misunderstood things. The more I understand about text rendering the more I understand that I don't understand more than I understand... The source of my confusion...