DOMPointReadOnly.cpp 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #include <LibWeb/Bindings/Intrinsics.h>
  8. #include <LibWeb/Geometry/DOMMatrix.h>
  9. #include <LibWeb/Geometry/DOMPointReadOnly.h>
  10. #include <LibWeb/WebIDL/ExceptionOr.h>
  11. namespace Web::Geometry {
  12. JS::NonnullGCPtr<DOMPointReadOnly> DOMPointReadOnly::construct_impl(JS::Realm& realm, double x, double y, double z, double w)
  13. {
  14. return realm.heap().allocate<DOMPointReadOnly>(realm, realm, x, y, z, w);
  15. }
  16. DOMPointReadOnly::DOMPointReadOnly(JS::Realm& realm, double x, double y, double z, double w)
  17. : PlatformObject(realm)
  18. , m_x(x)
  19. , m_y(y)
  20. , m_z(z)
  21. , m_w(w)
  22. {
  23. }
  24. // https://drafts.fxtf.org/geometry/#dom-dompointreadonly-frompoint
  25. JS::NonnullGCPtr<DOMPointReadOnly> DOMPointReadOnly::from_point(JS::VM& vm, DOMPointInit const& other)
  26. {
  27. // The fromPoint(other) static method on DOMPointReadOnly must create a DOMPointReadOnly from the dictionary other.
  28. return construct_impl(*vm.current_realm(), other.x, other.y, other.z, other.w);
  29. }
  30. DOMPointReadOnly::~DOMPointReadOnly() = default;
  31. // https://drafts.fxtf.org/geometry/#dom-dompointreadonly-matrixtransform
  32. WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMPoint>> DOMPointReadOnly::matrix_transform(DOMMatrixInit& matrix) const
  33. {
  34. // 1. Let matrixObject be the result of invoking create a DOMMatrix from the dictionary matrix.
  35. auto matrix_object = TRY(DOMMatrix::create_from_dom_matrix_2d_init(realm(), matrix));
  36. // 2. Return the result of invoking transform a point with a matrix, given the current point and matrixObject. The current point does not get modified.
  37. return matrix_object->transform_point(*this);
  38. }
  39. void DOMPointReadOnly::initialize(JS::Realm& realm)
  40. {
  41. Base::initialize(realm);
  42. set_prototype(&Bindings::ensure_web_prototype<Bindings::DOMPointReadOnlyPrototype>(realm, "DOMPointReadOnly"));
  43. }
  44. }