fromVector4 static method

Returns a quaternion from the raw XYZW components of v.

Implementation

static QuaternionBase fromVector4(Vector4Base v) => createFactory(
  v.x,
  v.y,
  v.z,
  v.w,
);