toIntAsFloat32x4 method

Float32x4 toIntAsFloat32x4()

Perform a toInt() in each value and return a Float32x4.

Implementation

Float32x4 toIntAsFloat32x4() => Float32x4(x.toInt().toDouble(),
    y.toInt().toDouble(), z.toInt().toDouble(), w.toInt().toDouble());