DOMMatrixReadOnly: toFloat64Array()-Methode
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Die toFloat64Array()
-Methode der DOMMatrixReadOnly
-Schnittstelle gibt ein neues Float64Array
zurück, das alle 16 Elemente (m11
, m12
, m13
, m14
, m21
, m22
, m23
, m24
, m31
, m32
, m33
, m34
, m41
, m42
, m43
, m44
) enthält, die die Matrix bilden. Die Elemente werden als Gleitkommazahlen mit doppelter Genauigkeit im Spalten-major-Format (coleographischer Zugriff, oder "colex") in das Array gespeichert. (Mit anderen Worten, von oben nach unten durch die erste Spalte, dann die zweite Spalte und so weiter.)
Syntax
toFloat64Array()
Parameter
Keine.
Rückgabewert
Ein Float64Array
; ein Array der 16 Elementwerte der Matrix.
Beispiele
const matrix = new DOMMatrixReadOnly();
let float64 = matrix.translate(20, 30, 50).toFloat64Array();
console.log(float64); // Float64Array(16) [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 20, 30, 0, 1 ] ]
console.log(`m41: ${float64[12]}, m42: ${float64[13]}, m43: ${float64[14]}`); // m41: 20, m42: 30, M44: 40
float64 = matrix.rotate(30).toFloat64Array();
console.log(float64);
console.log(`m11: ${float64[0]}, m12: ${float64[1]}`); // m11: 0.8660254037844387, m12: 0.49999999999999994
Spezifikationen
Specification |
---|
Geometry Interfaces Module Level 1 # dom-dommatrixreadonly-tofloat64array |
Browser-Kompatibilität
BCD tables only load in the browser