Hi, I'm using Structures of Arrays as a point ranges. It would be great if this kind of structure could be supported. e.g. Simplified SoA as point container : ```c++ struct Points { std::vector<float> x; std::vector<float> y; }; ``` Thanks