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

Detailed Description

Lightweight 3D point.

Allows coordinate access using [] operator.

See also
mrpt::poses::CPoint3D, mrpt::math::TPoint3Df

Definition at line 378 of file lightweight_geom_data.h.

#include <mrpt/math/lightweight_geom_data.h>

Inheritance diagram for mrpt::math::TPoint3D:
Inheritance graph

Public Types

enum  { static_size = 3 }
 

Public Member Functions

constexpr TPoint3D (double xx, double yy, double zz)
 Constructor from coordinates. More...
 
 TPoint3D ()
 Default fast constructor. More...
 
 TPoint3D (const TPoint3Df &p)
 Explicit constructor from coordinates. More...
 
 TPoint3D (const TPoint2D &p)
 Implicit constructor from TPoint2D. More...
 
 TPoint3D (const TPose2D &p)
 Constructor from TPose2D, losing information. More...
 
 TPoint3D (const TPose3D &p)
 Constructor from TPose3D, losing information. More...
 
double & operator[] (size_t i)
 Coordinate access using operator[]. More...
 
constexpr const double & operator[] (size_t i) const
 Coordinate access using operator[]. More...
 
double distanceTo (const TPoint3D &p) const
 Point-to-point distance. More...
 
double sqrDistanceTo (const TPoint3D &p) const
 Point-to-point distance, squared. More...
 
double norm () const
 Point norm. More...
 
TPoint3Doperator*= (const double f)
 Point scale. More...
 
template<class VECTORLIKE >
void getAsVector (VECTORLIKE &v) const
 Transformation into vector. More...
 
TPoint3Doperator+= (const TPoint3D &p)
 Translation. More...
 
TPoint3Doperator-= (const TPoint3D &p)
 Difference between points. More...
 
constexpr TPoint3D operator+ (const TPoint3D &p) const
 Points addition. More...
 
constexpr TPoint3D operator- (const TPoint3D &p) const
 Points substraction. More...
 
constexpr TPoint3D operator* (double d) const
 
constexpr TPoint3D operator/ (double d) const
 
bool operator< (const TPoint3D &p) const
 
void asString (std::string &s) const
 Returns a human-readable textual representation of the object (eg: "[0.02 1.04 -0.8]" ) More...
 
std::string asString () const
 
void fromString (const std::string &s)
 Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04 -0.8]" ) More...
 

Static Public Member Functions

static constexpr size_t size ()
 

Public Attributes

double x
 X,Y,Z coordinates. More...
 
double y
 
double z
 

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
static_size 

Definition at line 380 of file lightweight_geom_data.h.

Constructor & Destructor Documentation

◆ TPoint3D() [1/6]

constexpr mrpt::math::TPoint3D::TPoint3D ( double  xx,
double  yy,
double  zz 
)
inlineconstexpr

Constructor from coordinates.


Definition at line 388 of file lightweight_geom_data.h.

◆ TPoint3D() [2/6]

mrpt::math::TPoint3D::TPoint3D ( )
inline

Default fast constructor.

Initializes to garbage.

Definition at line 390 of file lightweight_geom_data.h.

◆ TPoint3D() [3/6]

mrpt::math::TPoint3D::TPoint3D ( const TPoint3Df p)
inlineexplicit

Explicit constructor from coordinates.


Definition at line 392 of file lightweight_geom_data.h.

◆ TPoint3D() [4/6]

mrpt::math::TPoint3D::TPoint3D ( const TPoint2D p)

Implicit constructor from TPoint2D.

Zeroes the z.

See also
TPoint2D

Definition at line 174 of file lightweight_geom_data.cpp.

◆ TPoint3D() [5/6]

mrpt::math::TPoint3D::TPoint3D ( const TPose2D p)
explicit

Constructor from TPose2D, losing information.

Zeroes the z.

See also
TPose2D

Definition at line 175 of file lightweight_geom_data.cpp.

◆ TPoint3D() [6/6]

mrpt::math::TPoint3D::TPoint3D ( const TPose3D p)
explicit

Constructor from TPose3D, losing information.

See also
TPose3D

Definition at line 176 of file lightweight_geom_data.cpp.

Member Function Documentation

◆ asString() [1/2]

std::string mrpt::math::TPoint3D::asString ( ) const
inline

Definition at line 534 of file lightweight_geom_data.h.

◆ asString() [2/2]

void mrpt::math::TPoint3D::asString ( std::string s) const
inline

Returns a human-readable textual representation of the object (eg: "[0.02 1.04 -0.8]" )

See also
fromString

Definition at line 530 of file lightweight_geom_data.h.

References mrpt::format().

◆ distanceTo()

double mrpt::math::TPoint3D::distanceTo ( const TPoint3D p) const
inline

◆ fromString()

void mrpt::math::TPoint3D::fromString ( const std::string s)

Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04 -0.8]" )

See also
asString
Exceptions
std::exceptionOn invalid format

Definition at line 190 of file lightweight_geom_data.cpp.

References ASSERTMSG_, and THROW_EXCEPTION.

◆ getAsVector()

template<class VECTORLIKE >
void mrpt::math::TPoint3D::getAsVector ( VECTORLIKE &  v) const
inline

Transformation into vector.

Definition at line 472 of file lightweight_geom_data.h.

References x, y, and z.

Referenced by mrpt::math::TSegment3D::distance().

◆ norm()

double mrpt::math::TPoint3D::norm ( ) const
inline

◆ operator*()

constexpr TPoint3D mrpt::math::TPoint3D::operator* ( double  d) const
inlineconstexpr

Definition at line 514 of file lightweight_geom_data.h.

◆ operator*=()

TPoint3D& mrpt::math::TPoint3D::operator*= ( const double  f)
inline

Point scale.

Definition at line 461 of file lightweight_geom_data.h.

◆ operator+()

constexpr TPoint3D mrpt::math::TPoint3D::operator+ ( const TPoint3D p) const
inlineconstexpr

Points addition.

Definition at line 502 of file lightweight_geom_data.h.

References x.

◆ operator+=()

TPoint3D& mrpt::math::TPoint3D::operator+= ( const TPoint3D p)
inline

Translation.

Definition at line 482 of file lightweight_geom_data.h.

References x.

◆ operator-()

constexpr TPoint3D mrpt::math::TPoint3D::operator- ( const TPoint3D p) const
inlineconstexpr

Points substraction.

Definition at line 509 of file lightweight_geom_data.h.

References x.

◆ operator-=()

TPoint3D& mrpt::math::TPoint3D::operator-= ( const TPoint3D p)
inline

Difference between points.

Definition at line 492 of file lightweight_geom_data.h.

References x.

◆ operator/()

constexpr TPoint3D mrpt::math::TPoint3D::operator/ ( double  d) const
inlineconstexpr

Definition at line 519 of file lightweight_geom_data.h.

◆ operator<()

bool mrpt::math::TPoint3D::operator< ( const TPoint3D p) const

Definition at line 177 of file lightweight_geom_data.cpp.

◆ operator[]() [1/2]

double& mrpt::math::TPoint3D::operator[] ( size_t  i)
inline

Coordinate access using operator[].

Order: x,y,z

Definition at line 408 of file lightweight_geom_data.h.

References x, y, and z.

◆ operator[]() [2/2]

constexpr const double& mrpt::math::TPoint3D::operator[] ( size_t  i) const
inlineconstexpr

Coordinate access using operator[].

Order: x,y,z

Definition at line 423 of file lightweight_geom_data.h.

References x, y, and z.

◆ size()

static constexpr size_t mrpt::math::TPoint3D::size ( )
inlinestaticconstexpr

Definition at line 547 of file lightweight_geom_data.h.

Referenced by mrpt::math::TPolygon3D::TPolygon3D().

◆ sqrDistanceTo()

double mrpt::math::TPoint3D::sqrDistanceTo ( const TPoint3D p) const
inline

Point-to-point distance, squared.

Definition at line 447 of file lightweight_geom_data.h.

References mrpt::square().

Referenced by mrpt::topography::path_from_rtk_gps().

Member Data Documentation

◆ x

double mrpt::math::TPoint3D::x

X,Y,Z coordinates.

Definition at line 385 of file lightweight_geom_data.h.

Referenced by mrpt::math::areAligned(), aux_projectPoint_with_distortion(), mrpt::maps::CPointsMap::boundingBox(), mrpt::maps::COctoMapBase< octomap::OcTree, octomap::OcTreeNode >::castRay(), mrpt::poses::CPointPDFParticles::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::detectors::CFaceDetection::checkIfFaceRegions(), mrpt::detectors::CFaceDetection::checkRelativePosition(), mrpt::poses::CPose2D::composePoint(), mrpt::poses::CPose3DRotVec::composePoint(), mrpt::poses::CPose3D::composePoint(), mrpt::math::TPose3D::composePoint(), mrpt::maps::CLandmarksMap::compute3DMatchingRatio(), mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::CLandmarksMap::computeLikelihood_SIFT_LandmarkMap(), mrpt::maps::CLandmarksMap::computeMatchingWith3DLandmarks(), mrpt::vision::computeMsd(), mrpt::math::conformAPlane(), mrpt::math::TLine3D::contains(), mrpt::math::TPolygon3D::contains(), mrpt::obs::detail::cost_func(), mrpt::poses::CPoint2D::CPoint2D(), mrpt::opengl::CPolyhedron::CreateCubicPrism(), mrpt::math::distance(), mrpt::math::TLine3D::distance(), mrpt::graphs::detail::CVisualizer< CPOSE, MAPS_IMPLEMENTATION, mrpt::graphs::detail::TMRSlamNodeAnnotations, mrpt::graphs::detail::edge_annotations_empty >::drawGroundGrid(), mrpt::topography::ENU_axes_from_WGS84(), mrpt::topography::ENUToGeocentric(), mrpt::detectors::CFaceDetection::experimental_viewFacePointsAndEigenVects(), mrpt::maps::CPointsMap::extractPoints(), mrpt::vision::frameJac(), mrpt::maps::CPointsMap::fuseWith(), mrpt::topography::geocentricToENU_WGS84(), mrpt::topography::geocentricToGeodetic(), mrpt::topography::geodeticToGeocentric(), mrpt::topography::geodeticToGeocentric_WGS84(), mrpt::topography::geodeticToUTM(), mrpt::topography::GeodeticToUTM(), mrpt::opengl::COpenGLViewport::get3DRayForPixelCoord(), mrpt::maps::COctoMap::getAsOctoMapVoxels(), mrpt::maps::CColouredOctoMap::getAsOctoMapVoxels(), getAsVector(), mrpt::opengl::COpenGLStandardObject::getBoundingBox(), mrpt::opengl::CSetOfTexturedTriangles::getBoundingBox(), mrpt::opengl::CText::getBoundingBox(), mrpt::opengl::CDisk::getBoundingBox(), mrpt::opengl::CAxis::getBoundingBox(), mrpt::opengl::CColorBar::getBoundingBox(), mrpt::opengl::CSphere::getBoundingBox(), mrpt::opengl::CSimpleLine::getBoundingBox(), mrpt::opengl::CTexturedPlane::getBoundingBox(), mrpt::opengl::CArrow::getBoundingBox(), mrpt::opengl::CGridPlaneXY::getBoundingBox(), mrpt::opengl::CText3D::getBoundingBox(), mrpt::opengl::CGridPlaneXZ::getBoundingBox(), mrpt::opengl::CSetOfObjects::getBoundingBox(), mrpt::opengl::CFrustum::getBoundingBox(), mrpt::opengl::CPlanarLaserScan::getBoundingBox(), mrpt::opengl::CPolyhedron::getBoundingBox(), mrpt::opengl::CCylinder::getBoundingBox(), mrpt::opengl::CMesh3D::getBoundingBox(), mrpt::opengl::CSetOfTriangles::getBoundingBox(), mrpt::opengl::CMeshFast::getBoundingBox(), mrpt::opengl::CMesh::getBoundingBox(), mrpt::opengl::CVectorField2D::getBoundingBox(), mrpt::opengl::CAngularObservationMesh::getBoundingBox(), mrpt::opengl::COpenGLViewport::getBoundingBox(), mrpt::opengl::CVectorField3D::getBoundingBox(), mrpt::opengl::CPolyhedron::getCenter(), mrpt::math::TSegment3D::getCenter(), mrpt::opengl::CSetOfLines::getLineByIndex(), mrpt::maps::CLandmark::getPose(), mrpt::math::getPrismBounds(), mrpt::math::getSegmentBisector(), mrpt::opengl::graph_tools::graph_visualize(), IMPLEMENTS_SERIALIZABLE(), mrpt::maps::CRandomFieldGridMap3D::insertIndividualReading(), insertRotunda(), mrpt::maps::CPointsMap::internal_insertObservation(), mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_prepareOneRange(), mrpt::math::intersect(), mrpt::maps::CHeightGridMap2D_Base::intersectLine3D(), mrpt::poses::CPose3D::inverseComposePoint(), jacob_dh_db_and_dh_dc(), mrpt::vision::CCamModel::jacobian_project_with_distortion(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeClosestPoint3D(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeNClosestPoint3D(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeNClosestPoint3DIdx(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::opengl::CAssimpModel::loadScene(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::matchFeatures(), mrpt::slam::CRangeBearingKFSLAM::OnInverseObservationModel(), mrpt::math::operator!=(), operator+(), operator+=(), operator-(), mrpt::math::operator-(), operator-=(), mrpt::math::operator==(), operator[](), mrpt::topography::path_from_rtk_gps(), mrpt::vision::pointJac(), mrpt::vision::CCamModel::project_3D_point(), project_point(), mrpt::vision::projectMatchedFeature(), mrpt::vision::projectMatchedFeatures(), mrpt::vision::pinhole::projectPoint_no_distortion(), mrpt::vision::pinhole::projectPoint_with_distortion(), mrpt::vision::pinhole::projectPoints_with_distortion(), mrpt::maps::CLandmarksMap::TCustomSequenceLandmarks::push_back(), mrpt::vision::recompute_errors_and_Jacobians(), mrpt::opengl::COpenGLViewport::render(), mrpt::opengl::CColorBar::render_dl(), mrpt::opengl::CBox::render_dl(), mrpt::opengl::COctoMapVoxels::render_dl(), mrpt::opengl::gl_utils::renderTriangleWithNormal(), se3_l2_internal(), mrpt::opengl::CBox::serializeFrom(), mrpt::opengl::CBox::serializeTo(), mrpt::opengl::CBox::setBoxCorners(), mrpt::slam::CRejectionSamplingRangeOnlyLocalization::setParams(), mrpt::maps::CLandmark::setPose(), mrpt::poses::CPose3DRotVec::sphericalCoordinates(), mrpt::poses::CPose3D::sphericalCoordinates(), mrpt::poses::CPose3DQuat::sphericalCoordinates(), TEST(), Pose3DQuatTests::test_composeAndInvComposePoint(), Pose3DQuatTests::test_composePoint_vs_CPose3D(), Pose3DQuatTests::test_composePointJacob(), Pose3DTests::test_composePointJacob(), Pose3DTests::test_composePointJacob_se3(), Pose3DQuatTests::test_invComposePoint_vs_CPose3D(), Pose3DQuatTests::test_invComposePointJacob(), Pose3DTests::test_invComposePointJacob(), Pose3DTests::test_invComposePointJacob_se3(), mrpt::math::TLine2D::TLine2D(), mrpt::math::TLine3D::TLine3D(), mrpt::math::TPlane::TPlane(), mrpt::opengl::CCylinder::traceRay(), mrpt::topography::transfInterpolation(), mrpt::topography::transform10params(), mrpt::topography::transform1D(), mrpt::topography::transform7params(), mrpt::topography::transform7params_TOPCON(), mrpt::topography::transformHelmert3D_TOPCON(), mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures(), mrpt::vision::CCamModel::unproject_3D_point(), unsafeProjectPoint(), and mrpt::topography::UTMToGeodetic().

◆ y

double mrpt::math::TPoint3D::y

Definition at line 385 of file lightweight_geom_data.h.

Referenced by mrpt::math::areAligned(), aux_projectPoint_with_distortion(), mrpt::maps::CPointsMap::boundingBox(), mrpt::maps::COctoMapBase< octomap::OcTree, octomap::OcTreeNode >::castRay(), mrpt::poses::CPointPDFParticles::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::detectors::CFaceDetection::checkRelativePosition(), mrpt::poses::CPose2D::composePoint(), mrpt::poses::CPose3DRotVec::composePoint(), mrpt::poses::CPose3D::composePoint(), mrpt::math::TPose3D::composePoint(), mrpt::maps::CLandmarksMap::compute3DMatchingRatio(), mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::CLandmarksMap::computeLikelihood_SIFT_LandmarkMap(), mrpt::maps::CLandmarksMap::computeMatchingWith3DLandmarks(), mrpt::vision::computeMsd(), mrpt::math::conformAPlane(), mrpt::math::TLine3D::contains(), mrpt::math::TPolygon3D::contains(), mrpt::obs::detail::cost_func(), mrpt::poses::CPoint2D::CPoint2D(), mrpt::opengl::CPolyhedron::CreateCubicPrism(), mrpt::math::distance(), mrpt::math::TLine3D::distance(), mrpt::graphs::detail::CVisualizer< CPOSE, MAPS_IMPLEMENTATION, mrpt::graphs::detail::TMRSlamNodeAnnotations, mrpt::graphs::detail::edge_annotations_empty >::drawGroundGrid(), mrpt::topography::ENU_axes_from_WGS84(), mrpt::topography::ENUToGeocentric(), mrpt::detectors::CFaceDetection::experimental_viewFacePointsAndEigenVects(), mrpt::maps::CPointsMap::extractPoints(), mrpt::vision::frameJac(), mrpt::topography::geocentricToENU_WGS84(), mrpt::topography::geocentricToGeodetic(), mrpt::topography::geodeticToGeocentric(), mrpt::topography::geodeticToGeocentric_WGS84(), mrpt::topography::geodeticToUTM(), mrpt::topography::GeodeticToUTM(), mrpt::opengl::COpenGLViewport::get3DRayForPixelCoord(), mrpt::maps::COctoMap::getAsOctoMapVoxels(), mrpt::maps::CColouredOctoMap::getAsOctoMapVoxels(), getAsVector(), mrpt::opengl::COpenGLStandardObject::getBoundingBox(), mrpt::opengl::CSetOfTexturedTriangles::getBoundingBox(), mrpt::opengl::CText::getBoundingBox(), mrpt::opengl::CDisk::getBoundingBox(), mrpt::opengl::CAxis::getBoundingBox(), mrpt::opengl::CColorBar::getBoundingBox(), mrpt::opengl::CSphere::getBoundingBox(), mrpt::opengl::CSimpleLine::getBoundingBox(), mrpt::opengl::CTexturedPlane::getBoundingBox(), mrpt::opengl::CArrow::getBoundingBox(), mrpt::opengl::CGridPlaneXY::getBoundingBox(), mrpt::opengl::CText3D::getBoundingBox(), mrpt::opengl::CGridPlaneXZ::getBoundingBox(), mrpt::opengl::CSetOfObjects::getBoundingBox(), mrpt::opengl::CFrustum::getBoundingBox(), mrpt::opengl::CPlanarLaserScan::getBoundingBox(), mrpt::opengl::CPolyhedron::getBoundingBox(), mrpt::opengl::CCylinder::getBoundingBox(), mrpt::opengl::CMesh3D::getBoundingBox(), mrpt::opengl::CSetOfTriangles::getBoundingBox(), mrpt::opengl::CMeshFast::getBoundingBox(), mrpt::opengl::CMesh::getBoundingBox(), mrpt::opengl::CVectorField2D::getBoundingBox(), mrpt::opengl::CAngularObservationMesh::getBoundingBox(), mrpt::opengl::COpenGLViewport::getBoundingBox(), mrpt::opengl::CVectorField3D::getBoundingBox(), mrpt::opengl::CPolyhedron::getCenter(), mrpt::math::TSegment3D::getCenter(), mrpt::opengl::CSetOfLines::getLineByIndex(), mrpt::maps::CLandmark::getPose(), mrpt::math::getPrismBounds(), mrpt::math::getSegmentBisector(), mrpt::opengl::graph_tools::graph_visualize(), IMPLEMENTS_SERIALIZABLE(), mrpt::maps::CRandomFieldGridMap3D::insertIndividualReading(), insertRotunda(), mrpt::maps::CPointsMap::internal_insertObservation(), mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_prepareOneRange(), mrpt::math::intersect(), mrpt::maps::CHeightGridMap2D_Base::intersectLine3D(), mrpt::poses::CPose3D::inverseComposePoint(), jacob_dh_db_and_dh_dc(), mrpt::vision::CCamModel::jacobian_project_with_distortion(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeClosestPoint3D(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeNClosestPoint3D(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeNClosestPoint3DIdx(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::opengl::CAssimpModel::loadScene(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::matchFeatures(), mrpt::slam::CRangeBearingKFSLAM::OnInverseObservationModel(), mrpt::math::operator!=(), mrpt::math::operator-(), mrpt::math::operator==(), operator[](), mrpt::topography::path_from_rtk_gps(), mrpt::vision::pointJac(), mrpt::vision::CCamModel::project_3D_point(), project_point(), mrpt::vision::projectMatchedFeature(), mrpt::vision::projectMatchedFeatures(), mrpt::vision::pinhole::projectPoint_no_distortion(), mrpt::vision::pinhole::projectPoint_with_distortion(), mrpt::vision::pinhole::projectPoints_with_distortion(), mrpt::maps::CLandmarksMap::TCustomSequenceLandmarks::push_back(), mrpt::vision::recompute_errors_and_Jacobians(), mrpt::opengl::COpenGLViewport::render(), mrpt::opengl::CColorBar::render_dl(), mrpt::opengl::CBox::render_dl(), mrpt::opengl::gl_utils::renderTriangleWithNormal(), se3_l2_internal(), mrpt::opengl::CBox::serializeFrom(), mrpt::opengl::CBox::serializeTo(), mrpt::opengl::CBox::setBoxCorners(), mrpt::slam::CRejectionSamplingRangeOnlyLocalization::setParams(), mrpt::maps::CLandmark::setPose(), mrpt::poses::CPose3DRotVec::sphericalCoordinates(), mrpt::poses::CPose3D::sphericalCoordinates(), mrpt::poses::CPose3DQuat::sphericalCoordinates(), TEST(), Pose3DQuatTests::test_composeAndInvComposePoint(), Pose3DQuatTests::test_composePoint_vs_CPose3D(), Pose3DQuatTests::test_composePointJacob(), Pose3DTests::test_composePointJacob(), Pose3DTests::test_composePointJacob_se3(), Pose3DQuatTests::test_invComposePoint_vs_CPose3D(), Pose3DQuatTests::test_invComposePointJacob(), Pose3DTests::test_invComposePointJacob(), Pose3DTests::test_invComposePointJacob_se3(), mrpt::math::TLine2D::TLine2D(), mrpt::math::TLine3D::TLine3D(), mrpt::math::TPlane::TPlane(), mrpt::opengl::CCylinder::traceRay(), mrpt::topography::transfInterpolation(), mrpt::topography::transform10params(), mrpt::topography::transform1D(), mrpt::topography::transform7params(), mrpt::topography::transform7params_TOPCON(), mrpt::topography::transformHelmert3D_TOPCON(), mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures(), mrpt::vision::CCamModel::unproject_3D_point(), unsafeProjectPoint(), and mrpt::topography::UTMToGeodetic().

◆ z

double mrpt::math::TPoint3D::z

Definition at line 385 of file lightweight_geom_data.h.

Referenced by mrpt::math::areAligned(), aux_projectPoint_with_distortion(), mrpt::maps::CPointsMap::boundingBox(), mrpt::maps::COctoMapBase< octomap::OcTree, octomap::OcTreeNode >::castRay(), mrpt::poses::CPointPDFParticles::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::poses::CPose2D::composePoint(), mrpt::poses::CPose3DRotVec::composePoint(), mrpt::poses::CPose3D::composePoint(), mrpt::math::TPose3D::composePoint(), mrpt::maps::CLandmarksMap::compute3DMatchingRatio(), mrpt::maps::CLandmarksMap::computeLikelihood_SIFT_LandmarkMap(), mrpt::maps::CLandmarksMap::computeMatchingWith3DLandmarks(), mrpt::vision::computeMsd(), mrpt::math::conformAPlane(), mrpt::math::TLine3D::contains(), mrpt::math::TPolygon3D::contains(), mrpt::obs::detail::cost_func(), mrpt::opengl::CPolyhedron::CreateCubicPrism(), mrpt::math::distance(), mrpt::math::TLine3D::distance(), mrpt::math::TPolygon3D::distance(), mrpt::graphs::detail::CVisualizer< CPOSE, MAPS_IMPLEMENTATION, mrpt::graphs::detail::TMRSlamNodeAnnotations, mrpt::graphs::detail::edge_annotations_empty >::drawGroundGrid(), mrpt::topography::ENU_axes_from_WGS84(), mrpt::topography::ENUToGeocentric(), mrpt::detectors::CFaceDetection::experimental_viewFacePointsAndEigenVects(), mrpt::maps::CPointsMap::extractPoints(), mrpt::vision::frameJac(), mrpt::topography::geocentricToENU_WGS84(), mrpt::topography::geocentricToGeodetic(), mrpt::topography::geodeticToGeocentric(), mrpt::topography::geodeticToGeocentric_WGS84(), mrpt::topography::geodeticToUTM(), mrpt::topography::GeodeticToUTM(), mrpt::opengl::COpenGLViewport::get3DRayForPixelCoord(), mrpt::maps::CPointsMap::getAs3DObject(), mrpt::maps::COctoMap::getAsOctoMapVoxels(), mrpt::maps::CColouredOctoMap::getAsOctoMapVoxels(), getAsVector(), mrpt::opengl::COpenGLStandardObject::getBoundingBox(), mrpt::opengl::CSetOfTexturedTriangles::getBoundingBox(), mrpt::opengl::CText::getBoundingBox(), mrpt::opengl::CDisk::getBoundingBox(), mrpt::opengl::CAxis::getBoundingBox(), mrpt::opengl::CColorBar::getBoundingBox(), mrpt::opengl::CSphere::getBoundingBox(), mrpt::opengl::CSimpleLine::getBoundingBox(), mrpt::opengl::CTexturedPlane::getBoundingBox(), mrpt::opengl::CArrow::getBoundingBox(), mrpt::opengl::CGridPlaneXY::getBoundingBox(), mrpt::opengl::CText3D::getBoundingBox(), mrpt::opengl::CGridPlaneXZ::getBoundingBox(), mrpt::opengl::CSetOfObjects::getBoundingBox(), mrpt::opengl::CFrustum::getBoundingBox(), mrpt::opengl::CPlanarLaserScan::getBoundingBox(), mrpt::opengl::CPolyhedron::getBoundingBox(), mrpt::opengl::CCylinder::getBoundingBox(), mrpt::opengl::CMesh3D::getBoundingBox(), mrpt::opengl::CSetOfTriangles::getBoundingBox(), mrpt::opengl::CMeshFast::getBoundingBox(), mrpt::opengl::CMesh::getBoundingBox(), mrpt::opengl::CVectorField2D::getBoundingBox(), mrpt::opengl::CAngularObservationMesh::getBoundingBox(), mrpt::opengl::COpenGLViewport::getBoundingBox(), mrpt::opengl::CVectorField3D::getBoundingBox(), mrpt::opengl::CPolyhedron::getCenter(), mrpt::math::TSegment3D::getCenter(), mrpt::opengl::CSetOfLines::getLineByIndex(), mrpt::maps::CLandmark::getPose(), mrpt::math::getPrismBounds(), mrpt::math::getSegmentBisector(), mrpt::opengl::graph_tools::graph_visualize(), IMPLEMENTS_SERIALIZABLE(), mrpt::maps::CRandomFieldGridMap3D::insertIndividualReading(), insertRotunda(), mrpt::maps::CPointsMap::internal_insertObservation(), mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_prepareOneRange(), mrpt::math::intersect(), mrpt::maps::CHeightGridMap2D_Base::intersectLine3D(), mrpt::poses::CPose3D::inverseComposePoint(), jacob_dh_db_and_dh_dc(), mrpt::vision::CCamModel::jacobian_project_with_distortion(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeClosestPoint3D(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeNClosestPoint3D(), mrpt::math::KDTreeCapable< CFeatureListKDTree< FEAT > >::kdTreeNClosestPoint3DIdx(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::opengl::CAssimpModel::loadScene(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::matchFeatures(), mrpt::slam::CRangeBearingKFSLAM::OnInverseObservationModel(), mrpt::math::operator!=(), mrpt::math::operator-(), mrpt::math::operator==(), operator[](), mrpt::topography::path_from_rtk_gps(), mrpt::vision::pointJac(), mrpt::vision::CCamModel::project_3D_point(), project_point(), mrpt::vision::projectMatchedFeature(), mrpt::vision::projectMatchedFeatures(), mrpt::vision::pinhole::projectPoint_no_distortion(), mrpt::vision::pinhole::projectPoint_with_distortion(), mrpt::vision::pinhole::projectPoints_with_distortion(), mrpt::vision::recompute_errors_and_Jacobians(), mrpt::opengl::COpenGLViewport::render(), mrpt::opengl::CColorBar::render_dl(), mrpt::opengl::CBox::render_dl(), mrpt::opengl::gl_utils::renderTriangleWithNormal(), se3_l2_internal(), mrpt::opengl::CBox::serializeFrom(), mrpt::opengl::CBox::serializeTo(), mrpt::opengl::CBox::setBoxCorners(), mrpt::slam::CRejectionSamplingRangeOnlyLocalization::setParams(), mrpt::maps::CLandmark::setPose(), mrpt::poses::CPose3DRotVec::sphericalCoordinates(), mrpt::poses::CPose3D::sphericalCoordinates(), mrpt::poses::CPose3DQuat::sphericalCoordinates(), TEST(), Pose3DQuatTests::test_composeAndInvComposePoint(), Pose3DQuatTests::test_composePoint_vs_CPose3D(), Pose3DQuatTests::test_composePointJacob(), Pose3DTests::test_composePointJacob(), Pose3DTests::test_composePointJacob_se3(), Pose3DQuatTests::test_invComposePoint_vs_CPose3D(), Pose3DQuatTests::test_invComposePointJacob(), Pose3DTests::test_invComposePointJacob(), Pose3DTests::test_invComposePointJacob_se3(), mrpt::math::TLine3D::TLine3D(), mrpt::math::TPlane::TPlane(), mrpt::opengl::CCylinder::traceRay(), mrpt::topography::transfInterpolation(), mrpt::topography::transform10params(), mrpt::topography::transform1D(), mrpt::topography::transform7params(), mrpt::topography::transform7params_TOPCON(), mrpt::topography::transformHelmert3D_TOPCON(), mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures(), mrpt::vision::CCamModel::unproject_3D_point(), and mrpt::topography::UTMToGeodetic().




Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST