mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:22:43 +00:00 
			
		
		
		
	 57dc179b1f
			
		
	
	
		57dc179b1f
		
	
	
	
	
		
			
			This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Shannon Booth <shannon.ml.booth@gmail.com>
 | |
|  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Forward.h>
 | |
| #include <LibGfx/Point.h>
 | |
| 
 | |
| namespace Gfx {
 | |
| 
 | |
| template<typename T>
 | |
| class Triangle {
 | |
| public:
 | |
|     Triangle(Point<T> a, Point<T> b, Point<T> c)
 | |
|         : m_a(a)
 | |
|         , m_b(b)
 | |
|         , m_c(c)
 | |
|     {
 | |
|         m_determinant = (m_b.x() - m_a.x()) * (m_c.y() - m_a.y()) - (m_b.y() - m_a.y()) * (m_c.x() - m_a.x());
 | |
|     }
 | |
| 
 | |
|     Point<T> a() const { return m_a; }
 | |
|     Point<T> b() const { return m_b; }
 | |
|     Point<T> c() const { return m_c; }
 | |
| 
 | |
|     bool contains(Point<T> p) const
 | |
|     {
 | |
|         auto x = p.x();
 | |
|         auto y = p.y();
 | |
| 
 | |
|         auto ax = m_a.x();
 | |
|         auto bx = m_b.x();
 | |
|         auto cx = m_c.x();
 | |
| 
 | |
|         auto ay = m_a.y();
 | |
|         auto by = m_b.y();
 | |
|         auto cy = m_c.y();
 | |
| 
 | |
|         if (m_determinant * ((bx - ax) * (y - ay) - (by - ay) * (x - ax)) <= 0)
 | |
|             return false;
 | |
|         if (m_determinant * ((cx - bx) * (y - by) - (cy - by) * (x - bx)) <= 0)
 | |
|             return false;
 | |
|         if (m_determinant * ((ax - cx) * (y - cy) - (ay - cy) * (x - cx)) <= 0)
 | |
|             return false;
 | |
|         return true;
 | |
|     }
 | |
| 
 | |
|     DeprecatedString to_deprecated_string() const;
 | |
| 
 | |
| private:
 | |
|     T m_determinant { 0 };
 | |
|     Point<T> m_a;
 | |
|     Point<T> m_b;
 | |
|     Point<T> m_c;
 | |
| };
 | |
| 
 | |
| }
 |