KiCad PCB EDA Suite
Loading...
Searching...
No Matches
TRIANGLE_2D Class Reference

#include <triangle_2d.h>

Inheritance diagram for TRIANGLE_2D:
OBJECT_2D

Public Member Functions

 TRIANGLE_2D (const SFVEC2F &aV1, const SFVEC2F &aV2, const SFVEC2F &aV3, const BOARD_ITEM &aBoardItem)
 
const SFVEC2FGetP1 () const
 
const SFVEC2FGetP2 () const
 
const SFVEC2FGetP3 () const
 
bool Overlaps (const BBOX_2D &aBBox) const override
 Test if the box overlaps the object.
 
bool Intersects (const BBOX_2D &aBBox) const override
 a.Intersects(b) ⇔ !a.Disjoint(b) ⇔ !(a ∩ b = ∅)
 
bool Intersect (const RAYSEG2D &aSegRay, float *aOutT, SFVEC2F *aNormalOut) const override
 
INTERSECTION_RESULT IsBBoxInside (const BBOX_2D &aBBox) const override
 Test this object if it's completely outside, intersects, or is completely inside aBBox.
 
bool IsPointInside (const SFVEC2F &aPoint) const override
 
const BOARD_ITEMGetBoardItem () const
 
const BBOX_2DGetBBox () const
 
const SFVEC2FGetCentroid () const
 
OBJECT_2D_TYPE GetObjectType () const
 

Protected Attributes

BBOX_2D m_bbox
 
SFVEC2F m_centroid
 
OBJECT_2D_TYPE m_obj_type
 
const BOARD_ITEMm_boardItem
 

Private Attributes

SFVEC2F p1
 
SFVEC2F p2
 
SFVEC2F p3
 
float m_inv_denominator
 
float m_p2y_minus_p3y
 
float m_p3x_minus_p2x
 
float m_p3y_minus_p1y
 
float m_p1x_minus_p3x
 

Detailed Description

Definition at line 38 of file triangle_2d.h.

Constructor & Destructor Documentation

◆ TRIANGLE_2D()

Member Function Documentation

◆ GetBBox()

◆ GetBoardItem()

const BOARD_ITEM & OBJECT_2D::GetBoardItem ( ) const
inlineinherited

Definition at line 66 of file object_2d.h.

References OBJECT_2D::m_boardItem.

Referenced by RENDER_3D_RAYTRACE_BASE::createItemsFromContainer().

◆ GetCentroid()

const SFVEC2F & OBJECT_2D::GetCentroid ( ) const
inlineinherited

◆ GetObjectType()

◆ GetP1()

const SFVEC2F & TRIANGLE_2D::GetP1 ( ) const
inline

◆ GetP2()

const SFVEC2F & TRIANGLE_2D::GetP2 ( ) const
inline

◆ GetP3()

const SFVEC2F & TRIANGLE_2D::GetP3 ( ) const
inline

◆ Intersect()

bool TRIANGLE_2D::Intersect ( const RAYSEG2D aSegRay,
float *  aOutT,
SFVEC2F aNormalOut 
) const
overridevirtual
Parameters
aOutTa value between 0.0 and 1.0 in relation to the time of the hit of the segment.

Implements OBJECT_2D.

Definition at line 80 of file triangle_2d.cpp.

◆ Intersects()

bool TRIANGLE_2D::Intersects ( const BBOX_2D aBBox) const
overridevirtual

a.Intersects(b) ⇔ !a.Disjoint(b) ⇔ !(a ∩ b = ∅)

TODO: Optimize

Implements OBJECT_2D.

Definition at line 63 of file triangle_2d.cpp.

References BBOX_2D::Intersects(), and OBJECT_2D::m_bbox.

◆ IsBBoxInside()

INTERSECTION_RESULT TRIANGLE_2D::IsBBoxInside ( const BBOX_2D aBBox) const
overridevirtual

Test this object if it's completely outside, intersects, or is completely inside aBBox.

Returns
INTERSECTION_RESULT

Implements OBJECT_2D.

Definition at line 86 of file triangle_2d.cpp.

References BBOX_2D::Intersects(), and OBJECT_2D::m_bbox.

◆ IsPointInside()

bool TRIANGLE_2D::IsPointInside ( const SFVEC2F aPoint) const
overridevirtual

Implements OBJECT_2D.

Definition at line 96 of file triangle_2d.cpp.

References m_inv_denominator, m_p1x_minus_p3x, m_p2y_minus_p3y, m_p3x_minus_p2x, m_p3y_minus_p1y, and p3.

◆ Overlaps()

bool TRIANGLE_2D::Overlaps ( const BBOX_2D aBBox) const
overridevirtual

Test if the box overlaps the object.

Conformance Implements the Overlaps function from the OGC Simple Feature Specification at http://www.opengeospatial.org/standards/sfa. a.Overlaps(b) ⇔ ( dim(I(a)) = dim(I(b)) = dim(I(a)I(b))) ∧ (a ∩ b ≠ a) ∧ (a ∩ b ≠ b) It means that the result dimension of an overlap is the same dimensions of the bounding box (so the overlap cannot be a point or a line) and one of the boxes cannot full contain the other box.

Parameters
aBBoxis the bounding box to test.
Returns
true if the BBox intersects the object or is inside it.

Implements OBJECT_2D.

Definition at line 73 of file triangle_2d.cpp.

Member Data Documentation

◆ m_bbox

◆ m_boardItem

const BOARD_ITEM& OBJECT_2D::m_boardItem
protectedinherited

Definition at line 114 of file object_2d.h.

Referenced by OBJECT_2D::GetBoardItem().

◆ m_centroid

◆ m_inv_denominator

float TRIANGLE_2D::m_inv_denominator
private

Definition at line 59 of file triangle_2d.h.

Referenced by IsPointInside(), and TRIANGLE_2D().

◆ m_obj_type

OBJECT_2D_TYPE OBJECT_2D::m_obj_type
protectedinherited

Definition at line 112 of file object_2d.h.

Referenced by OBJECT_2D::GetObjectType(), and OBJECT_2D::OBJECT_2D().

◆ m_p1x_minus_p3x

float TRIANGLE_2D::m_p1x_minus_p3x
private

Definition at line 63 of file triangle_2d.h.

Referenced by IsPointInside(), and TRIANGLE_2D().

◆ m_p2y_minus_p3y

float TRIANGLE_2D::m_p2y_minus_p3y
private

Definition at line 60 of file triangle_2d.h.

Referenced by IsPointInside(), and TRIANGLE_2D().

◆ m_p3x_minus_p2x

float TRIANGLE_2D::m_p3x_minus_p2x
private

Definition at line 61 of file triangle_2d.h.

Referenced by IsPointInside(), and TRIANGLE_2D().

◆ m_p3y_minus_p1y

float TRIANGLE_2D::m_p3y_minus_p1y
private

Definition at line 62 of file triangle_2d.h.

Referenced by IsPointInside(), and TRIANGLE_2D().

◆ p1

SFVEC2F TRIANGLE_2D::p1
private

Definition at line 55 of file triangle_2d.h.

Referenced by GetP1(), and TRIANGLE_2D().

◆ p2

SFVEC2F TRIANGLE_2D::p2
private

Definition at line 56 of file triangle_2d.h.

Referenced by GetP2(), and TRIANGLE_2D().

◆ p3

SFVEC2F TRIANGLE_2D::p3
private

Definition at line 57 of file triangle_2d.h.

Referenced by GetP3(), IsPointInside(), and TRIANGLE_2D().


The documentation for this class was generated from the following files: