Core 1.0
Convex2 Class Reference

Convex polygons in the plane. More...

#include <convex.h>

Inheritance diagram for Convex2:
Polygon2

Public Member Functions

 Convex2 ()
 Empty.
 
 Convex2 (Vector2 *, int)
 Create a convex polygon from an array of points.
 
 Convex2 (const Vector2 &, const Vector2 &, const Vector2 &)
 Create a convex polygon from three points.
 
 Convex2 (const QVector< Vector > &)
 Create a convex polygon.
 
 Convex2 (const QVector< Vector2 > &)
 Create a convex polygon.
 
 Convex2 (const Box2 &)
 Create a convex from a box.
 
 Convex2 (const Hexagon2 &)
 Create a convex from a hexagon.
 
 Convex2 (const Triangle2 &)
 Create a convex from a triangle.
 
 Convex2 (const Quadrangle2 &)
 Create a convex from a quadrangle.
 
 ~Convex2 ()
 Empty.
 
bool Cut (const Line2 &)
 Cut the convex polygon by a line.
 
bool AddIntersection (const Segment2 &)
 Check the intersection between the convex and a segment, if intersection occurs, add the points to the convex.
 
double R (const Vector2 &) const
 Compute the squared distance between a point and a convex polygon.
 
Vector2 Normal (const Vector2 &) const
 Compute the normal vector between a point and a convex polygon.
 
bool Inside (const Convex2 &) const
 Test if a convex is inside another one.
 
bool Inside (const Vector2 &) const
 Test if a point is inside the convex.
 
bool Intersect (const Convex2 &) const
 Test if two convex intersect.
 
bool Intersection (const Convex2 &, QVector< Vector2 > &) const
 Test if two convex intersect and yield the set of intersection points.
 
Convex2 Minkowski (const Convex2 &) const
 Straightforward implementation of the Minkowski sum of two convex.
 
- Public Member Functions inherited from Polygon2
 Polygon2 ()
 Create an empty polygon.
 
 Polygon2 (Vector2 *, int)
 Create a polygon given an array of points.
 
 Polygon2 (const Vector2 &, const Vector2 &, const Vector2 &)
 Create a triangle.
 
 Polygon2 (const Vector2 &, const Vector2 &, const Vector2 &, const Vector2 &)
 Create a quadrangle.
 
 Polygon2 (const QVector< Vector > &)
 Create a polygon.
 
 Polygon2 (const QVector< Vector2 > &)
 Create a polygon.
 
 Polygon2 (const QVector< Vector2 > &, const QVector< int > &)
 Create a polygon from a set of vertexes and a subset of indexes.
 
 Polygon2 (const Triangle2 &)
 Create a triangle.
 
 Polygon2 (const Box2 &)
 Create a polygon from a box.
 
 Polygon2 (const Hexagon2 &)
 Create a hexagon.
 
 Polygon2 (const Pentagon2 &)
 Create a pentagon.
 
 Polygon2 (const Quadrangle2 &)
 Create a quadrangle.
 
 Polygon2 (const Polygonal &)
 Create a planar polygon for a polygon.
 
 Polygon2 (const Octogon2 &)
 Create an octogon.
 
 Polygon2 (const IrregularOctogon2 &)
 Create an irregular octogon.
 
 Polygon2 (const Ellipse2 &, int=72)
 Create a polygon approximation of an ellipse.
 
double Hausdorff (const Polygon2 &, bool=false) const
 Compute the Hausdorff distance between two polygons.
 
Box2 GetBox () const
 Compute the bounding box of the polygon.
 
Polygon2 Scaled (const Vector2 &) const
 Return the scaled polygon.
 
Polygon2 Translated (const Vector2 &) const
 Translate the polygon by a given vector.
 
Polygon2 Rotated (const Matrix2 &) const
 Rotate the polygon.
 
Polygon2 Transformed (const Frame2 &) const
 Trasform the polygon.
 
void Translate (const Vector2 &)
 Translate the polygon by a given vector.
 
void Scale (const double &)
 Scale the polygon by a given factor.
 
void Rotate (const Matrix2 &)
 Rotate the polygon.
 
void Append (const Vector2 &)
 Add a vertex to the polygon.
 
Vector2Vertex (int)
 Read write access to the i-th point.
 
Vector2 Vertex (int) const
 Read only access to the i-th point.
 
QVector< Vector2Vertices ()
 Get the array of vertices.
 
const QVector< Vector2 > & Vertices () const
 Get the array of vertices.
 
Vector2 Edge (int) const
 Return the i-th edge, starting from the i-th vertex.
 
int Size () const
 Return the number of vertices of the polygon.
 
double Length () const
 Compute the perimeter of the polygon.
 
bool IsConvex () const
 Check whether the polygon is convex.
 
Vector2 PointAtLength (const double &) const
 Return the position of the point on the polygon at a given length from the starting point.
 
Vector2 NormalAtLength (const double &) const
 Return the normal at the position of the point on the polygon.
 
bool Inside (const Vector2 &) const
 Check if a point is inside or outside of the polygon.
 
double R (const Vector2 &) const
 Compute the squared distance between a point and a polygon.
 
double RC (const Vector2 &) const
 Compute the squared distance between a point and the contour of the polygon.
 
double R (const Line2 &) const
 Compute the distance from a polygon to a line.
 
double Signed (const Vector2 &) const
 Compute the signed distance between a point and a polygon.
 
bool Intersect (const Circle2 &) const
 Check the intersection between the boundaty of the polygon and a circle.
 
int Where (const Circle2 &) const
 Check the position of a circle againts the polygon.
 
bool IntersectSegment (const Segment2 &) const
 Test if a segment intersects the polygon.
 
double Area () const
 Compute the area of the polygon.
 
Vector2 Centroid () const
 Compute the centroid of the polygon.
 
Vector2 Center () const
 Compute the barycenter of the polygon.
 
void Subdivide (int, QVector< Vector2 > &, QVector< int > &) const
 Create an n-adic subdivision of a polygon.
 
void Expand (const double &)
 Expand the polygon by a given distance.
 
QPolygonF GetQt () const
 Convert the rectangle into a Qt polygon.
 
void Draw (QGraphicsScene &, const QPen &=QPen(), const QBrush &=QBrush()) const
 Draw a polygon.
 
Polygon2 Resampled (const double &) const
 Resample the edges of the polygon.
 
QVector< Vector2Poisson (const double &, int, bool=false, Random &=Random::R239) const
 Compute a Poisson sphere distribution inside a polygon.
 
Vector2 RandomInside (Random &=Random::R239) const
 Generate a random vector inside the box.
 
QVector< int > EarClip () const
 Compute a simple polygon triangulation using a ear clipping method.
 

Static Public Member Functions

static Convex2 Hull (QVector< Vector2 >)
 Create the convex hull of a set of points.
 
static QVector< Convex2VoronoiCells (const QVector< Vector2 > &, const Box2 &)
 Create the Voronoi cells from a given set of points.
 
static Convex2 VoronoiCell (const QVector< Vector2 > &, const Box2 &, const Vector2 &)
 Create one Voronoi cell.
 
- Static Public Member Functions inherited from Polygon2
static bool Inside (const QVector< Polygon2 > &, const Vector2 &)
 Test if a point is inside the union of a set of polygons.
 
static double R (const QVector< Polygon2 > &, const Vector2 &)
 Compute the squared distance between a point and a set of polygons.
 

Protected Member Functions

int WhichSide (const Vector2 &, const Vector2 &) const
 Test on which side lie the vertices of the convex polygon.
 

Additional Inherited Members

- Protected Attributes inherited from Polygon2
QVector< Vector2q
 Array of vertices.
 

Detailed Description

Convex polygons in the plane.

Drawing member function is inherited from Polygon2::Draw() const.

Constructor & Destructor Documentation

◆ Convex2() [1/8]

Convex2::Convex2 ( Vector2 * p,
int n )
explicit

Create a convex polygon from an array of points.

See Convex2::Hull to compute the convex hull of a set of points.

Parameters
pArray of points.
nSize.

◆ Convex2() [2/8]

Convex2::Convex2 ( const Vector2 & a,
const Vector2 & b,
const Vector2 & c )
explicit

Create a convex polygon from three points.

Parameters
a,b,cPoints (should be in trigonometric ordrer).

◆ Convex2() [3/8]

Convex2::Convex2 ( const QVector< Vector > & q)
explicit

Create a convex polygon.

Note that convexity is not checked. See Convex2::Hull to compute the convex hull of a set of points.

Parameters
qArray of points defining the polygon (should be convex).

◆ Convex2() [4/8]

Convex2::Convex2 ( const QVector< Vector2 > & q)
explicit

Create a convex polygon.

Parameters
qArray of points defining the polygon (should be convex).

◆ Convex2() [5/8]

Convex2::Convex2 ( const Box2 & b)

Create a convex from a box.

Parameters
bThe box.

◆ Convex2() [6/8]

Convex2::Convex2 ( const Hexagon2 & h)

Create a convex from a hexagon.

Parameters
hThe hexagon.

◆ Convex2() [7/8]

Convex2::Convex2 ( const Triangle2 & t)

Create a convex from a triangle.

Parameters
tThe triangle.

◆ Convex2() [8/8]

Convex2::Convex2 ( const Quadrangle2 & q)

Create a convex from a quadrangle.

Parameters
qThe quadrangle.

Member Function Documentation

◆ AddIntersection()

bool Convex2::AddIntersection ( const Segment2 & s)

Check the intersection between the convex and a segment, if intersection occurs, add the points to the convex.

This function adds the points to the list of vertices of the convex polygon.

Parameters
sThe segment.

◆ Cut()

bool Convex2::Cut ( const Line2 & line)

Cut the convex polygon by a line.

This function updates the convex polygon and returns true if intersection occured.

Parameters
lineThe line.

◆ Hull()

Convex2 Convex2::Hull ( QVector< Vector2 > p)
static

Create the convex hull of a set of points.

Parameters
pSet of points.

◆ Inside() [1/2]

bool Convex2::Inside ( const Convex2 & convex) const

Test if a convex is inside another one.

Parameters
convexThe convex polygon.

◆ Inside() [2/2]

bool Convex2::Inside ( const Vector2 & p) const

Test if a point is inside the convex.

Parameters
pThe point.

◆ Intersect()

bool Convex2::Intersect ( const Convex2 & c) const

Test if two convex intersect.

Parameters
cConvex.

◆ Intersection()

bool Convex2::Intersection ( const Convex2 & c,
QVector< Vector2 > & p ) const

Test if two convex intersect and yield the set of intersection points.

Parameters
cConvex.
pSet of intersection points.

◆ Minkowski()

Convex2 Convex2::Minkowski ( const Convex2 & c) const

Straightforward implementation of the Minkowski sum of two convex.

Parameters
cConvex.

◆ Normal()

Vector2 Convex2::Normal ( const Vector2 & p) const

Compute the normal vector between a point and a convex polygon.

Returns null vector if the point is inside the polygon.

Parameters
pPoint.

◆ R()

double Convex2::R ( const Vector2 & p) const

Compute the squared distance between a point and a convex polygon.

Parameters
pPoint.

◆ VoronoiCell()

Convex2 Convex2::VoronoiCell ( const QVector< Vector2 > & q,
const Box2 & box,
const Vector2 & p )
static

Create one Voronoi cell.

Parameters
qSet of points.
pPoint.
boxBox embedding the set of points.

◆ VoronoiCells()

QVector< Convex2 > Convex2::VoronoiCells ( const QVector< Vector2 > & q,
const Box2 & box )
static

Create the Voronoi cells from a given set of points.

Parameters
qSet of points.
boxBox embedding the set of points.

◆ WhichSide()

int Convex2::WhichSide ( const Vector2 & d,
const Vector2 & p ) const
protected

Test on which side lie the vertices of the convex polygon.

Parameters
dPositive half space direction.
pPoint.
Returns
A value +1 if all vertexes lie on the positive half-space side, -1 on the negative half space, and 0 otherwise, in which case the line splits the convex.