Egor Larionov

Results 29 comments of Egor Larionov

IIRC this PR aims to get consistent naming for `_to` and `_at` variants of the `look_` functions on top of #508. It does this to a certain extent without committing...

I think traditionally having Point be distinct from Vector is an effort to encode the distinction between affine spaces and euclidean spaces into the type system. This is usually done...

~~Another benefit of this is that libraries that implement lower level types like a custom floating point type (e.g. auto-diff, complex) would not need to implement BaseFloat, but will need...

Sure! Suppose I have bunch of code that looks like: ```rust use num_traits::Zero; fn make_some_mtx() -> [[T;2];2] { let mtx = [[T::zero(); 2]; 2]; // Maybe do something else with...

I think breaking down the trait bounds may help using types not already implementing all of BaseFloat, but I wasn’t intending to break apart num_traits::Float itself. I think that would...

I think not entirely since BaseFloat and BaseNum have additional useful traits from approx, but probably many bounds don’t need those.

Nice work! I'm happy you found the old PRs useful, and thank you for the mention :)

I tried it again with a windows enso 2.0.0-alpha.17 and tried your shortcut, but it seems the code is a bit cut off. I couldn't select multiple lines unfortunately to...

Thank you for the quick response! > It would be valuable, if you could link or attach some examples of files and provide links to the explanation, how VTK parser...

I think you are right! Thank you for the PR. It would be awesome to have more tests here!