WASM Threading memory out of bounds

I did an interesting find. Random access to points and computing distances to a fixed point. I did this to investigate -msimd128 and it turns out that no vectorization is made unless points are on a 16-byte boundary. Therefore invented a vtkScaledAOSDataArray (with padding). More interesting even without SIMD, the aligned memory is twice as fast as non-aligned memory. It has a significant impact reading less memory.