Quaternion.fromBuffer constructor
Constructs a quaternion with a storage that views given buffer
starting at offset
. offset
has to be multiple of
Float32List.bytesPerElement.
Implementation
Quaternion.fromBuffer(ByteBuffer buffer, int offset)
: _qStorage = new Float32List.view(buffer, offset, 4);