setFromMatrixPosition method

Vector4 setFromMatrixPosition(
  1. Matrix4 m
)

Implementation

Vector4 setFromMatrixPosition(Matrix4 m ) {
	final e = m.storage;

	this.x = e[ 12 ];
	this.y = e[ 13 ];
	this.z = e[ 14 ];
	this.w = e[ 15 ];

	return this;
}