| 1 | /* |
| 2 | * Copyright (C) 2014 Adobe Systems Incorporated. All rights reserved. |
| 3 | * Copyright (C) 2016 Apple Inc. All Rights Reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * |
| 9 | * 1. Redistributions of source code must retain the above |
| 10 | * copyright notice, this list of conditions and the following |
| 11 | * disclaimer. |
| 12 | * 2. Redistributions in binary form must reproduce the above |
| 13 | * copyright notice, this list of conditions and the following |
| 14 | * disclaimer in the documentation and/or other materials |
| 15 | * provided with the distribution. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 18 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 19 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 20 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 21 | * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, |
| 22 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 26 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 28 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
| 31 | #pragma once |
| 32 | |
| 33 | #include "DOMPointReadOnly.h" |
| 34 | |
| 35 | namespace WebCore { |
| 36 | |
| 37 | class DOMPoint final : public DOMPointReadOnly { |
| 38 | public: |
| 39 | static Ref<DOMPoint> create(double x, double y, double z = 0, double w = 1) { return adoptRef(*new DOMPoint(x, y, z, w)); } |
| 40 | static Ref<DOMPoint> create(const DOMPointInit& init) { return create(init.x, init.y, init.z, init.w); } |
| 41 | static Ref<DOMPoint> fromPoint(const DOMPointInit& init) { return create(init.x, init.y, init.z, init.w); } |
| 42 | |
| 43 | void setX(double x) { m_x = x; } |
| 44 | void setY(double y) { m_y = y; } |
| 45 | void setZ(double z) { m_z = z; } |
| 46 | void setW(double w) { m_w = w; } |
| 47 | |
| 48 | private: |
| 49 | DOMPoint(double x, double y, double z, double w) |
| 50 | : DOMPointReadOnly(x, y, z, w) |
| 51 | { |
| 52 | } |
| 53 | }; |
| 54 | static_assert(sizeof(DOMPoint) == sizeof(DOMPointReadOnly), "" ); |
| 55 | |
| 56 | } // namespace WebCore |
| 57 | |