equalsValues method

bool equalsValues(
  1. Float32x4 other
)

Returns true if equals to other values.

Implementation

bool equalsValues(Float32x4 other) {
  var diff = this - other;
  return diff.x == 0.0 && diff.y == 0.0 && diff.z == 0.0 && diff.w == 0.0;
}