round method

Quaternion round()

Rounds the values of this quaternion to integers.

Implementation

Quaternion round() => Quaternion(w.round(), x.round(), y.round(), z.round());