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