1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 17:55:06 +00:00

LibWeb: Add DOMMatrix toFloat32Array and toFloat64Array

This commit is contained in:
Bastiaan van der Plaat 2023-09-25 18:44:10 +02:00 committed by Andrew Kaster
parent 7b4b5b735b
commit 2e122b16e4
6 changed files with 59 additions and 2 deletions

View file

@ -101,6 +101,8 @@ public:
JS::NonnullGCPtr<DOMPoint> transform_point(DOMPointInit const&) const;
JS::NonnullGCPtr<DOMPoint> transform_point(DOMPointReadOnly const&) const;
JS::NonnullGCPtr<JS::Float32Array> to_float32_array() const;
JS::NonnullGCPtr<JS::Float64Array> to_float64_array() const;
WebIDL::ExceptionOr<String> to_string() const;