DOMPointReadOnly.cpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_DEFINE_ALLOCATOR(DOMPointReadOnly);
  13. JS::NonnullGCPtr<DOMPointReadOnly> DOMPointReadOnly::construct_impl(JS::Realm& realm, double x, double y, double z, double w)
  14. {
  15. return realm.heap().allocate<DOMPointReadOnly>(realm, realm, x, y, z, w);
  16. }
  17. DOMPointReadOnly::DOMPointReadOnly(JS::Realm& realm, double x, double y, double z, double w)
  18. : PlatformObject(realm)
  19. , m_x(x)
  20. , m_y(y)
  21. , m_z(z)
  22. , m_w(w)
  23. {
  24. }
  25. // https://drafts.fxtf.org/geometry/#dom-dompointreadonly-frompoint
  26. JS::NonnullGCPtr<DOMPointReadOnly> DOMPointReadOnly::from_point(JS::VM& vm, DOMPointInit const& other)
  27. {
  28. // The fromPoint(other) static method on DOMPointReadOnly must create a DOMPointReadOnly from the dictionary other.
  29. return construct_impl(*vm.current_realm(), other.x, other.y, other.z, other.w);
  30. }
  31. DOMPointReadOnly::~DOMPointReadOnly() = default;
  32. // https://drafts.fxtf.org/geometry/#dom-dompointreadonly-matrixtransform
  33. WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMPoint>> DOMPointReadOnly::matrix_transform(DOMMatrixInit& matrix) const
  34. {
  35. // 1. Let matrixObject be the result of invoking create a DOMMatrix from the dictionary matrix.
  36. auto matrix_object = TRY(DOMMatrix::create_from_dom_matrix_init(realm(), matrix));
  37. // 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.
  38. return matrix_object->transform_point(*this);
  39. }
  40. void DOMPointReadOnly::initialize(JS::Realm& realm)
  41. {
  42. Base::initialize(realm);
  43. WEB_SET_PROTOTYPE_FOR_INTERFACE(DOMPointReadOnly);
  44. }
  45. }