setFromMatrixPosition method
Implementation
Vector3 setFromMatrixPosition(m) {
final e = m.storage;
x = e[12];
y = e[13];
z = e[14];
return this;
}
Vector3 setFromMatrixPosition(m) {
final e = m.storage;
x = e[12];
y = e[13];
z = e[14];
return this;
}