mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:12:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Bindings/PlatformObject.h>
 | |
| #include <LibWeb/Geometry/DOMPoint.h>
 | |
| #include <LibWeb/Geometry/DOMRect.h>
 | |
| #include <LibWeb/Geometry/DOMRectReadOnly.h>
 | |
| 
 | |
| namespace Web::Geometry {
 | |
| 
 | |
| // https://drafts.fxtf.org/geometry/#dictdef-domquadinit
 | |
| struct DOMQuadInit {
 | |
|     DOMPointInit p1;
 | |
|     DOMPointInit p2;
 | |
|     DOMPointInit p3;
 | |
|     DOMPointInit p4;
 | |
| };
 | |
| 
 | |
| // https://drafts.fxtf.org/geometry/#domquad
 | |
| class DOMQuad : public Bindings::PlatformObject {
 | |
|     WEB_PLATFORM_OBJECT(DOMQuad, Bindings::PlatformObject);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<DOMQuad> construct_impl(JS::Realm&, DOMPointInit const& p1, DOMPointInit const& p2, DOMPointInit const& p3, DOMPointInit const& p4);
 | |
| 
 | |
|     virtual ~DOMQuad() override;
 | |
| 
 | |
|     static JS::NonnullGCPtr<DOMQuad> from_rect(JS::VM&, DOMRectInit const&);
 | |
|     static JS::NonnullGCPtr<DOMQuad> from_quad(JS::VM&, DOMQuadInit const&);
 | |
| 
 | |
|     JS::NonnullGCPtr<DOMPoint> p1() const { return m_p1; }
 | |
|     JS::NonnullGCPtr<DOMPoint> p2() const { return m_p2; }
 | |
|     JS::NonnullGCPtr<DOMPoint> p3() const { return m_p3; }
 | |
|     JS::NonnullGCPtr<DOMPoint> p4() const { return m_p4; }
 | |
| 
 | |
|     JS::NonnullGCPtr<DOMRect> get_bounds() const;
 | |
| 
 | |
| private:
 | |
|     DOMQuad(JS::Realm&, DOMPointInit const& p1, DOMPointInit const& p2, DOMPointInit const& p3, DOMPointInit const& p4);
 | |
| 
 | |
|     virtual void initialize(JS::Realm&) override;
 | |
|     virtual void visit_edges(Cell::Visitor&) override;
 | |
| 
 | |
|     JS::NonnullGCPtr<DOMPoint> m_p1;
 | |
|     JS::NonnullGCPtr<DOMPoint> m_p2;
 | |
|     JS::NonnullGCPtr<DOMPoint> m_p3;
 | |
|     JS::NonnullGCPtr<DOMPoint> m_p4;
 | |
| };
 | |
| 
 | |
| }
 | 
