Main MRPT website > C++ reference for MRPT 1.9.9
List of all members | Public Member Functions | Public Attributes
mrpt::math::TPlane Struct Reference

Detailed Description

3D Plane, represented by its equation $Ax+By+Cz+D=0$

See also
TSegment3D,TLine3D,TPolygon3D,TPoint3D

Definition at line 1326 of file lightweight_geom_data.h.

#include <mrpt/math/lightweight_geom_data.h>

Public Member Functions

double evaluatePoint (const TPoint3D &point) const
 Evaluate a point in the plane's equation. More...
 
bool contains (const TPoint3D &point) const
 Check whether a point is contained into the plane. More...
 
bool contains (const TSegment3D &segment) const
 Check whether a segment is fully contained into the plane. More...
 
bool contains (const TLine3D &line) const
 Check whether a line is fully contained into the plane. More...
 
double distance (const TPoint3D &point) const
 Distance to 3D point. More...
 
double distance (const TLine3D &line) const
 Distance to 3D line. More...
 
void getNormalVector (double(&vec)[3]) const
 Get plane's normal vector. More...
 
void unitarize ()
 Unitarize normal vector. More...
 
void getUnitaryNormalVector (double(&vec)[3])
 Unitarize, then get normal vector. More...
 
void getAsPose3D (mrpt::poses::CPose3D &outPose)
 Gets a pose whose XY plane corresponds to this plane. More...
 
void getAsPose3D (mrpt::poses::CPose3D &outPose) const
 Gets a pose whose XY plane corresponds to this plane. More...
 
void getAsPose3DForcingOrigin (const TPoint3D &newOrigin, mrpt::poses::CPose3D &pose)
 Gets a pose whose XY plane corresponds to this, forcing an exact point as its spatial coordinates. More...
 
void getAsPose3DForcingOrigin (const TPoint3D &newOrigin, mrpt::poses::CPose3D &pose) const
 Gets a pose whose XY plane corresponds to this, forcing an exact point as its spatial coordinates. More...
 
 TPlane (const TPoint3D &p1, const TPoint3D &p2, const TPoint3D &p3)
 Gets a plane which contains these three points. More...
 
 TPlane (const TPoint3D &p1, const TLine3D &r2)
 Gets a plane which contains this point and this line. More...
 
 TPlane (const TLine3D &r1, const TLine3D &r2)
 Gets a plane which contains the two lines. More...
 
 TPlane ()
 Fast default constructor. More...
 
 TPlane (double A, double B, double C, double D)
 Constructor from plane coefficients. More...
 
 TPlane (const double(&vec)[4])
 Constructor from an array of coefficients. More...
 

Public Attributes

double coefs [4]
 Plane coefficients, stored as an array: $\left[A,B,C,D\right]$. More...
 

Constructor & Destructor Documentation

◆ TPlane() [1/6]

mrpt::math::TPlane::TPlane ( const TPoint3D p1,
const TPoint3D p2,
const TPoint3D p3 
)

Gets a plane which contains these three points.

Exceptions
std::logic_errorif the points are linearly dependants.

Definition at line 785 of file lightweight_geom_data.cpp.

References coefs, mrpt::math::getEpsilon(), mrpt::math::TPoint3D::x, mrpt::math::TPoint3D::y, and mrpt::math::TPoint3D::z.

Here is the call graph for this function:

◆ TPlane() [2/6]

mrpt::math::TPlane::TPlane ( const TPoint3D p1,
const TLine3D r2 
)

Gets a plane which contains this point and this line.

Exceptions
std::logic_errorif the point is inside the line.

Definition at line 801 of file lightweight_geom_data.cpp.

References coefs, mrpt::math::TLine3D::director, mrpt::math::getEpsilon(), mrpt::math::TLine3D::pBase, mrpt::math::TPoint3D::x, mrpt::math::TPoint3D::y, and mrpt::math::TPoint3D::z.

Here is the call graph for this function:

◆ TPlane() [3/6]

mrpt::math::TPlane::TPlane ( const TLine3D r1,
const TLine3D r2 
)

Gets a plane which contains the two lines.

Exceptions
std::logic_errorif the lines do not cross.

Definition at line 814 of file lightweight_geom_data.cpp.

References coefs, mrpt::math::TLine3D::contains(), mrpt::math::crossProduct3D(), mrpt::math::TLine3D::director, evaluatePoint(), mrpt::math::getEpsilon(), mrpt::math::TLine3D::pBase, mrpt::math::TPoint3D::x, mrpt::math::TPoint3D::y, and mrpt::math::TPoint3D::z.

Here is the call graph for this function:

◆ TPlane() [4/6]

mrpt::math::TPlane::TPlane ( )
inline

Fast default constructor.

Initializes to garbage.

Definition at line 1425 of file lightweight_geom_data.h.

◆ TPlane() [5/6]

mrpt::math::TPlane::TPlane ( double  A,
double  B,
double  C,
double  D 
)
inline

Constructor from plane coefficients.

Definition at line 1429 of file lightweight_geom_data.h.

References coefs.

◆ TPlane() [6/6]

mrpt::math::TPlane::TPlane ( const double(&)  vec[4])
inline

Constructor from an array of coefficients.

Definition at line 1439 of file lightweight_geom_data.h.

References coefs.

Member Function Documentation

◆ contains() [1/3]

bool mrpt::math::TPlane::contains ( const TPoint3D point) const

Check whether a point is contained into the plane.

Definition at line 725 of file lightweight_geom_data.cpp.

References distance(), and mrpt::math::getEpsilon().

Referenced by contains(), getAsPose3DForcingOrigin(), and mrpt::math::intersect().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ contains() [2/3]

bool mrpt::math::TPlane::contains ( const TSegment3D segment) const
inline

Check whether a segment is fully contained into the plane.

Definition at line 1344 of file lightweight_geom_data.h.

References contains(), mrpt::math::TSegment3D::point1, and mrpt::math::TSegment3D::point2.

Here is the call graph for this function:

◆ contains() [3/3]

bool mrpt::math::TPlane::contains ( const TLine3D line) const

Check whether a line is fully contained into the plane.

Definition at line 729 of file lightweight_geom_data.cpp.

References contains(), mrpt::math::getAngle(), mrpt::math::getEpsilon(), and mrpt::math::TLine3D::pBase.

Here is the call graph for this function:

◆ distance() [1/2]

double mrpt::math::TPlane::distance ( const TPoint3D point) const

Distance to 3D point.

Definition at line 735 of file lightweight_geom_data.cpp.

References coefs, and evaluatePoint().

Referenced by contains(), mrpt::math::distance(), distance(), and mrpt::math::ransac3Dplane_distance().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ distance() [2/2]

double mrpt::math::TPlane::distance ( const TLine3D line) const

Distance to 3D line.

Will be zero if the line is not parallel to the plane.

Definition at line 739 of file lightweight_geom_data.cpp.

References distance(), mrpt::math::getAngle(), mrpt::math::getEpsilon(), and mrpt::math::TLine3D::pBase.

Here is the call graph for this function:

◆ evaluatePoint()

double mrpt::math::TPlane::evaluatePoint ( const TPoint3D point) const

Evaluate a point in the plane's equation.

Definition at line 721 of file lightweight_geom_data.cpp.

References coefs.

Referenced by mrpt::opengl::CPolyhedron::augment(), distance(), mrpt::math::intersect(), mrpt::math::project3D(), and TPlane().

Here is the caller graph for this function:

◆ getAsPose3D() [1/2]

void mrpt::math::TPlane::getAsPose3D ( mrpt::poses::CPose3D outPose)

Gets a pose whose XY plane corresponds to this plane.

Definition at line 759 of file lightweight_geom_data.cpp.

References coefs, mrpt::math::generateAxisBaseFromDirectionAndAxis(), mrpt::math::getEpsilon(), and getUnitaryNormalVector().

Referenced by mrpt::math::TPolygon3D::contains(), getAsPose3D(), intersectInCommonPlane(), mrpt::math::project3D(), and mrpt::math::TPolygonWithPlane::TPolygonWithPlane().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getAsPose3D() [2/2]

void mrpt::math::TPlane::getAsPose3D ( mrpt::poses::CPose3D outPose) const
inline

Gets a pose whose XY plane corresponds to this plane.

Definition at line 1384 of file lightweight_geom_data.h.

References getAsPose3D().

Here is the call graph for this function:

◆ getAsPose3DForcingOrigin() [1/2]

void mrpt::math::TPlane::getAsPose3DForcingOrigin ( const TPoint3D newOrigin,
mrpt::poses::CPose3D pose 
)

Gets a pose whose XY plane corresponds to this, forcing an exact point as its spatial coordinates.

Exceptions
std::logic_errorif the point is not inside the plane.

Definition at line 773 of file lightweight_geom_data.cpp.

References contains(), mrpt::math::generateAxisBaseFromDirectionAndAxis(), and getUnitaryNormalVector().

Referenced by mrpt::math::TPolygon3D::distance(), and getAsPose3DForcingOrigin().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getAsPose3DForcingOrigin() [2/2]

void mrpt::math::TPlane::getAsPose3DForcingOrigin ( const TPoint3D newOrigin,
mrpt::poses::CPose3D pose 
) const
inline

Gets a pose whose XY plane corresponds to this, forcing an exact point as its spatial coordinates.

Exceptions
std::logic_errorif the point is not inside the plane.

Definition at line 1401 of file lightweight_geom_data.h.

References getAsPose3DForcingOrigin().

Here is the call graph for this function:

◆ getNormalVector()

void mrpt::math::TPlane::getNormalVector ( double(&)  vec[3]) const

Get plane's normal vector.

Definition at line 746 of file lightweight_geom_data.cpp.

References coefs.

Referenced by getUnitaryNormalVector(), and mrpt::opengl::CPolyhedron::setNormal().

Here is the caller graph for this function:

◆ getUnitaryNormalVector()

void mrpt::math::TPlane::getUnitaryNormalVector ( double(&)  vec[3])
inline

Unitarize, then get normal vector.

Definition at line 1372 of file lightweight_geom_data.h.

References getNormalVector(), and unitarize().

Referenced by getAsPose3D(), and getAsPose3DForcingOrigin().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ unitarize()

void mrpt::math::TPlane::unitarize ( )

Unitarize normal vector.

Definition at line 752 of file lightweight_geom_data.cpp.

References coefs.

Referenced by mrpt::opengl::CPolyhedron::augment(), mrpt::math::getSegmentBisector(), getUnitaryNormalVector(), and mrpt::math::project3D().

Here is the caller graph for this function:

Member Data Documentation

◆ coefs

double mrpt::math::TPlane::coefs[4]



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019