ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
Tuple3Tpl< Type > Class Template Reference

3-Tuple structure (templated version) More...

#include <CVGeom.h>

Inheritance diagram for Tuple3Tpl< Type >:

Public Member Functions

std::size_t rows () const
 
std::size_t dimensions () const
 
Type * data ()
 
const Type * data () const
 
 Tuple3Tpl ()
 Default constructor. More...
 
 Tuple3Tpl (Type a, Type b, Type c)
 Constructor from a triplet of values. More...
 
 Tuple3Tpl (const Type p[])
 Constructor from an array of 3 elements. More...
 
Tuple3Tpl operator- () const
 Inverse operator. More...
 
Tuple3Tploperator+= (const Tuple3Tpl &v)
 In-place addition operator. More...
 
Tuple3Tploperator-= (const Tuple3Tpl &v)
 In-place subtraction operator. More...
 
Tuple3Tploperator*= (Type v)
 In-place multiplication (by a scalar) operator. More...
 
Tuple3Tploperator/= (Type v)
 In-place division (by a scalar) operator. More...
 
Tuple3Tpl operator+ (const Tuple3Tpl &v) const
 Addition operator. More...
 
Tuple3Tpl operator- (const Tuple3Tpl &v) const
 Subtraction operator. More...
 
Tuple3Tpl operator* (Type s) const
 Multiplication operator. More...
 
Tuple3Tpl operator/ (Type s) const
 Division operator. More...
 

Public Attributes

union {
   struct {
      Type   x
 
      Type   y
 
      Type   z
 
   } 
 
   Type   u [3]
 
}; 
 

Detailed Description

template<class Type>
class Tuple3Tpl< Type >

3-Tuple structure (templated version)

Definition at line 132 of file CVGeom.h.

Constructor & Destructor Documentation

◆ Tuple3Tpl() [1/3]

template<class Type >
Tuple3Tpl< Type >::Tuple3Tpl ( )
inline

Default constructor.

Inits tuple to (0, 0, 0).

Definition at line 151 of file CVGeom.h.

Referenced by Tuple3Tpl< Type >::operator*(), Tuple3Tpl< Type >::operator+(), Tuple3Tpl< Type >::operator-(), and Tuple3Tpl< Type >::operator/().

◆ Tuple3Tpl() [2/3]

template<class Type >
Tuple3Tpl< Type >::Tuple3Tpl ( Type  a,
Type  b,
Type  c 
)
inline

Constructor from a triplet of values.

Inits typle to (a,b,c).

Definition at line 156 of file CVGeom.h.

◆ Tuple3Tpl() [3/3]

template<class Type >
Tuple3Tpl< Type >::Tuple3Tpl ( const Type  p[])
inlineexplicit

Constructor from an array of 3 elements.

Definition at line 159 of file CVGeom.h.

Member Function Documentation

◆ data() [1/2]

◆ data() [2/2]

template<class Type >
const Type* Tuple3Tpl< Type >::data ( ) const
inline

Definition at line 146 of file CVGeom.h.

References Tuple3Tpl< Type >::u.

◆ dimensions()

template<class Type >
std::size_t Tuple3Tpl< Type >::dimensions ( ) const
inline

Definition at line 143 of file CVGeom.h.

Referenced by Tuple3Tpl< Type >::rows().

◆ operator*()

template<class Type >
Tuple3Tpl Tuple3Tpl< Type >::operator* ( Type  s) const
inline

Multiplication operator.

Definition at line 203 of file CVGeom.h.

References Tuple3Tpl< Type >::Tuple3Tpl(), Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator*=()

template<class Type >
Tuple3Tpl& Tuple3Tpl< Type >::operator*= ( Type  v)
inline

In-place multiplication (by a scalar) operator.

Definition at line 181 of file CVGeom.h.

References Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator+()

template<class Type >
Tuple3Tpl Tuple3Tpl< Type >::operator+ ( const Tuple3Tpl< Type > &  v) const
inline

Addition operator.

Definition at line 195 of file CVGeom.h.

References Tuple3Tpl< Type >::Tuple3Tpl(), Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator+=()

template<class Type >
Tuple3Tpl& Tuple3Tpl< Type >::operator+= ( const Tuple3Tpl< Type > &  v)
inline

In-place addition operator.

Definition at line 167 of file CVGeom.h.

References Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator-() [1/2]

template<class Type >
Tuple3Tpl Tuple3Tpl< Type >::operator- ( ) const
inline

Inverse operator.

Definition at line 162 of file CVGeom.h.

References Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator-() [2/2]

template<class Type >
Tuple3Tpl Tuple3Tpl< Type >::operator- ( const Tuple3Tpl< Type > &  v) const
inline

Subtraction operator.

Definition at line 199 of file CVGeom.h.

References Tuple3Tpl< Type >::Tuple3Tpl(), Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator-=()

template<class Type >
Tuple3Tpl& Tuple3Tpl< Type >::operator-= ( const Tuple3Tpl< Type > &  v)
inline

In-place subtraction operator.

Definition at line 174 of file CVGeom.h.

References Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator/()

template<class Type >
Tuple3Tpl Tuple3Tpl< Type >::operator/ ( Type  s) const
inline

Division operator.

Definition at line 207 of file CVGeom.h.

References Tuple3Tpl< Type >::Tuple3Tpl(), Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ operator/=()

template<class Type >
Tuple3Tpl& Tuple3Tpl< Type >::operator/= ( Type  v)
inline

In-place division (by a scalar) operator.

Definition at line 188 of file CVGeom.h.

References Tuple3Tpl< Type >::x, Tuple3Tpl< Type >::y, and Tuple3Tpl< Type >::z.

◆ rows()

template<class Type >
std::size_t Tuple3Tpl< Type >::rows ( ) const
inline

Definition at line 142 of file CVGeom.h.

References Tuple3Tpl< Type >::dimensions().

Member Data Documentation

◆ 

union { ... }

◆ u

template<class Type >
Type Tuple3Tpl< Type >::u[3]

Definition at line 139 of file CVGeom.h.

Referenced by PclUtils::PCLVis::addCaption(), ccPointCloud::addNormAtIndex(), Tiler::addPoint(), ccPointPairRegistrationDlg::addPointToTable(), MainWindow::addToDB(), ccMesh::addTriangleNorm(), AddVertex(), ccDBRoot::alignCameraWithEntity(), Vector3Tpl< Type >::angle_rad(), Vector3Tpl< Type >::angle_radd(), ccWaveform::applyRigidTransformation(), ccPointCloud::applyRigidTransformation(), cloudViewer::KDTree::buildSubTree(), ccCone::buildUp(), ccExtru::buildUp(), ccTorus::buildUp(), CCCloudToDraco(), cloudViewer::KDTree::checkDistantPointInSubTree(), cloudViewer::KDTree::checkNearerPointInSubTree(), ccRasterGrid::computeCellCenter(), ccRasterGrid::computeCellPos(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistances(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistanceWithOctree(), cloudViewer::DistanceComputationTools::computeCloud2PlaneDistanceRMS(), cloudViewer::DistanceComputationTools::computeCloud2PlaneEquation(), cloudViewer::DistanceComputationTools::ComputeCloud2PlaneMaxDistance(), cloudViewer::DistanceComputationTools::ComputeCloud2PlaneRobustMax(), DistanceMapGenerationTool::ProfileMetaData::computeCloudToSurfaceOriginTrans(), ComputeCorePointNormal(), ccGenericPointCloud::computeCovariance(), cloudViewer::Neighbourhood::computeCurvature(), QuadricLocalModel::computeDistanceFromModelToPoint(), ComputeEdgePoint(), ccRasterGrid::ComputeGridSize(), cloudViewer::Neighbourhood::computeLeastSquareBestFittingPlane(), ccGenericPointCloud::computeMeanAndCovariance(), DistanceMapGenerationTool::ComputeMinAndMaxLatitude_rad(), ComputeNeighborhood2MeshDistancesWithOctree(), ccPointCloud::computeNormalsWithGrids(), ccNormalVectors::ComputeNormalWithQuadric(), ccMesh::computePerTriangleNormals(), cloudViewer::DistanceComputationTools::computePoint2PlaneDistance(), cloudViewer::DistanceComputationTools::computePoint2TriangleDistance(), ecvDisplayTools::ComputeProjectionMatrix(), cloudViewer::Neighbourhood::computeQuadric(), DistanceMapGenerationTool::ComputeRadialDist(), cloudViewer::FPCSRegistrationTools::ComputeRegistrationScore(), cloudViewer::Neighbourhood::computeRoughness(), DimensionalityScaleParamsComputer::computeScaleParams(), cloudViewer::PointProjectionTools::computeTriangulation(), ccVolumeCalcTool::ComputeVolume(), DistanceMapGenerationTool::ConvertCloudToConical(), DistanceMapGenerationTool::ConvertCloudToCylindrical(), DistanceMapGenerationTool::ConvertMapToCloud(), DistanceMapGenerationTool::ConvertProfileToMesh(), ccRasterGrid::convertToCloud(), vtk2cc::ConvertToPolyline(), ccPointPairRegistrationDlg::convertToSphereCenter(), DistanceMapGenerationTool::CreateMap(), ccMesh::createNewMeshFromSelection(), ccCropTool::Crop(), ccPointCloud::crop2D(), Tuple3Tpl< Type >::data(), cloudViewer::GeometricalAnalysisTools::DetectCircle(), cloudViewer::PointProjectionTools::developCloudOnCone(), cloudViewer::PointProjectionTools::developCloudOnCylinder(), DistanceMapGenerationDlg::DistanceMapGenerationDlg(), cloudViewer::KDTree::distanceScanTree(), ccGraphicalSegmentationTool::doExportSegmentationPolyline(), ccOctree::DrawCellAsAPrimitive(), ccGBLSensor::drawMeOnly(), ccPointPair::drawMeOnly(), ccTrace::drawMeOnly(), cc2DLabel::drawMeOnly2D(), cc2DLabel::drawMeOnly3D(), ccRasterizeTool::exportContourLines(), ccPointCloud::exportCoordToSF(), ccRasterizeTool::ExportGeoTiff(), ccPointCloud::exportNormalToSF(), cloudViewer::DgmOctree::extractCCs(), ccContourExtractor::ExtractFlatContour(), MatrixDisplayDlg::fillDialogWith(), ccPointCloudLODThread::fillNode(), ccPointCloudLODThread::fillNode_flat(), ccRasterGrid::fillWith(), ccInnerRect2DFinder::findBiggestRect(), cloudViewer::FPCSRegistrationTools::FindCongruentBases(), cloudViewer::DgmOctree::findNearestNeighborsStartingFromCell(), cloudViewer::KDTree::findNearestNeighbour(), cloudViewer::KDTree::findNearestNeighbourWithMaxDist(), cloudViewer::KDTree::findPointBelowDistance(), cloudViewer::DgmOctree::findTheNearestNeighborStartingFromCell(), ccQuadric::Fit(), GrainsAsEllipsoids::fitEllipsoidToGrain(), FromFbxMesh(), ccGLMatrixTpl< T >::FromToRotation(), ccRasterizeTool::generateContours(), ccKdTree::getCellBBox(), cloudViewer::DgmOctree::getCellDistanceFromBorders(), ecvDisplayTools::GetCenterOfRotation(), qCanupo2DViewDialog::getClickPos(), ccMesh::getColorFromMaterial(), GetConeProfile(), cc2DLabel::getLabelContent(), cc2DLabel::getLabelInfo3(), ccNormalVectors::GetNormIndex(), cc2smReader::getOneOf(), ccHObject::getOwnGlobalBB(), cc2smReader::getPclCloud2(), cc2smReader::getPclPolygon(), ccWaveform::getSamplePos(), PclUtils::PCLVis::getTransformation(), ccMesh::getTriangleNorm(), ccMesh::getTriangleNormalIndexes(), ccMesh::getTriangleNormals(), ccMesh::getTriangleTexCoordinates(), ccMesh::getTriangleTexCoordinatesIndexes(), ccMesh::getVertexColorFromMaterial(), cc2smReader::getVtkPolyDataFromMeshCloud(), qM3C2Tools::GuessBestParams(), ccInnerRect2DFinder::init(), Tiler::init(), ccMesh::interpolateColors(), ccMesh::interpolateNormals(), cloudViewer::DistanceComputationTools::intersectMeshWithOctree(), cloudViewer::Grid3D< Type >::intersectWith(), STLFilter::loadASCIIFile(), STLFilter::loadBinaryFile(), LoadCloud(), ObjFilter::loadFile(), VTKFilter::loadFile(), SimpleBinFilter::loadFile(), DistanceMapGenerationDlg::loadOverlaySymbols(), qSRA::loadProfile(), qM3C2Normals::MakeNormalsHorizontal(), MakeSquare(), ccMesh::merge(), cloudViewer::BoundingBoxTpl< T >::minDistTo(), ccClipBox::move2D(), ccClipBox::move3D(), normal_cb(), ccBoundingBoxEditorDlg::onAxisValueChanged(), ecvAnimationParamDlg::onItemPicked(), ccPointPairRegistrationDlg::onItemPicked(), MainWindow::onItemPicked(), ecvCameraParamEditDlg::onItemPicked(), Vector3Tpl< Type >::operator()(), cloudViewer::SquareMatrixTpl< Scalar >::operator*(), ccGenericPrimitive::operator+=(), Vector3Tpl< Type >::operator[](), OrientPointNormalWithCloud(), Vector3Tpl< Type >::orthogonal(), DimScalarFieldWrapper::pointValue(), ccTracePolylineTool::polylineOverSampling(), masc::ContextBasedFeature::prepare(), CommandCrossSection::process(), CommandCrop::process(), CommandRasterize::process(), ccInnerRect2DFinder::process(), ecvAnimationParamDlg::processPickedItem(), ecvCameraParamEditDlg::processPickedItem(), ProjectOnCone(), ProjectOnCylinder(), ccQuadric::projectOnQuadric(), cloudViewer::GeometricalAnalysisTools::RefineSphereLS(), SaveScan(), STLFilter::saveToBINFile(), SinusxFilter::saveToFile(), MascaretFilter::saveToFile(), cloudViewer::ManualSegmentationTools::segmentMeshWithAABox(), cloudViewer::ManualSegmentationTools::segmentMeshWithAAPlane(), ecvDisplayTools::SetCenterOfRotation(), ccPointCloud::setRGBColorByBanding(), ccPointCloud::setRGBColorByHeight(), TransformInfo::setRotation(), TransformInfo::setTransformation(), ecvDisplayTools::SetViewportParameters(), PclFiltersTool::shift(), cvCutFilter::shift(), cvProbeFilter::shift(), cvStreamlineFilter::shift(), ecvFilterTool::shiftBox(), cloudViewer::TrueKdTree::split(), ecvDisplayTools::StartCPUBasedPointPicking(), cloudViewer::DistanceComputationTools::synchronizeOctrees(), cloudViewer::Delaunay2dMesh::TesselateContour(), ccBoundingBoxEditorDlg::toClipboardClicked(), QVTKWidgetCustom::toDisplayPoint(), Vector3Tpl< Type >::toFloat(), ToLocalAbscissa(), Vector3Tpl< Type >::toPC(), QVTKWidgetCustom::toWorldPoint(), ccMesh::transformTriNormals(), cloudViewer::Neighbourhood::triangulateFromQuadric(), ccPointCloud::triangulateGrid(), cloudViewer::CCMiscTools::TriBoxOverlap(), cloudViewer::CCMiscTools::TriBoxOverlapd(), ccPointCloud::unroll(), ccClipBox::update(), cc2Point5DimEditor::update2DDisplayZoom(), EditCameraTool::UpdateCamera(), EditCameraTool::UpdateCameraInfo(), PclUtils::PCLVis::updateCaption(), ecvDisplayTools::UpdateConstellationCenterAndZoom(), VtkUtils::TableModel::updateData(), ccRasterizeTool::updateGrid(), ccPointListPickingDlg::updateList(), ccNormalVectors::UpdateNormalOrientations(), cloudViewer::KDTree::updateOutsideBoundingBox(), DistanceMapGenerationDlg::updateProfileOrigin(), DistanceMapGenerationDlg::updateZoom(), vertex_cb(), DrawMeOnlyVisitor::visit(), TranslateBoundingBoxVisitor::visit(), GetCellBBoxVisitor::visit(), GetNeighborLeavesVisitor::visit(), and ccContourExtractorDlg::zoomOn().

◆ x

template<class Type >
Type Tuple3Tpl< Type >::x

Definition at line 137 of file CVGeom.h.

Referenced by AABB< T >::AABB(), cloudViewer::BoundingBoxTpl< T >::add(), ccMPlaneDlg::addFittingPoint(), cloudViewer::PointCloudTpl< T >::addPoint(), AddPointCoordinates(), ccGraphicalSegmentationTool::addPointToPolyline(), MainWindow::addToDB(), ccGraphicalTransformationTool::apply(), ccPointPairRegistrationDlg::apply(), ccGLMatrixTpl< T >::applyRotation(), ccGLMatrixTpl< T >::applyX(), ccGLMatrixTpl< T >::applyY(), ccGLMatrixTpl< T >::applyZ(), ecvGlobalShiftManager::BestShift(), ccBox::buildUp(), ccCone::buildUp(), ccDisc::buildUp(), ccDish::buildUp(), ccQuadric::buildUp(), ccSphere::buildUp(), ccTorus::buildUp(), ccGLMatrixTpl< T >::ccGLMatrixTpl(), ccPlaneEditDlg::ccPlaneEditDlg(), ccScaleDlg::ccScaleDlg(), LasSaveDialog::chosenScale(), G3Point::G3PointAction::cleanLabels(), cloud2binary(), ComparisonX(), GeneralFilters::compute(), qVoxFallProcess::Compute(), cloudViewer::Neighbourhood::compute3DQuadric(), cloudViewer::DistanceComputationTools::computeApproxCloud2CloudDistance(), cloudViewer::DgmOctreeReferenceCloud::computeBB(), cloudViewer::DgmOctree::computeCellCenter(), cloudViewer::DistanceComputationTools::computeCellHausdorffDistance(), cloudViewer::DistanceComputationTools::computeCellHausdorffDistanceWithLocalModel(), cloudViewer::DgmOctree::computeCellLimits(), cloudViewer::Grid3D< Type >::computeCellPos(), cloudViewer::DistanceComputationTools::computeCloud2BoxEquation(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistances(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistanceWithOctree(), cloudViewer::DistanceComputationTools::computeCloud2PolylineEquation(), ComputeClusterVolume(), ComputeCorePointNormal(), cloudViewer::Neighbourhood::computeCovarianceMatrix(), cloudViewer::GeometricalAnalysisTools::ComputeCovarianceMatrix(), cloudViewer::GeometricalAnalysisTools::ComputeCrossCovarianceMatrix(), cloudViewer::Neighbourhood::computeCurvature(), ComputeFacetExtensions(), ccCameraSensor::computeGlobalPlaneCoefficients(), cloudViewer::Neighbourhood::computeGravityCenter(), ccMesh::computeInterpolationWeights(), ccGenericMesh::computeInterpolationWeights(), cloudViewer::Neighbourhood::computeLeastSquareBestFittingPlane(), cloudViewer::MeshSamplingTools::computeMeshVolume(), cloudViewer::DgmOctree::ComputeMinDistanceToCellBorder(), ComputeNeighborhood2MeshDistancesWithOctree(), ccNormalVectors::ComputeNormalWithQuadric(), ccEntityAction::computeOctree(), ccCameraSensor::computeOrthoRectificationParams(), ComputePMUncertainty(), cloudViewer::DistanceComputationTools::computePoint2TriangleDistance(), ccGenericMesh::computePointPosition(), cloudViewer::Neighbourhood::computeQuadric(), DistanceMapGenerationTool::ComputeRadialDist(), DimensionalityScaleParamsComputer::computeScaleParams(), cloudViewer::GeometricalAnalysisTools::ComputeSphereFrom4(), DistanceMapGenerationTool::ComputeSurfacesAndVolumes(), FastMarchingForFacetExtraction::computeTCoefApprox(), cloudViewer::PointProjectionTools::computeTriangulation(), ccCameraSensor::computeUncertainty(), masc::ContextBasedFeature::computeValue(), cloudViewer::BoundingBoxTpl< T >::computeVolume(), cloudViewer::GeometricalAnalysisTools::ComputeWeightedCrossCovarianceMatrix(), cloudViewer::BoundingBoxTpl< T >::contains(), cloudViewer::BoundingBoxTpl< T >::containsEigen(), contourPoly(), contourPoly2(), ConverFromTo(), DistanceMapGenerationTool::ConvertCloudToCylindrical(), DistanceMapGenerationTool::ConvertMapToCloud(), ecvDisplayTools::ConvertMousePositionToOrientation(), ccNormalVectors::ConvertNormalToDipAndDipDir(), ccNormalVectors::ConvertNormalToRGB(), ccNormalVectors::ConvertNormalToStrikeAndDip(), DistanceMapGenerationTool::ConvertProfileToMesh(), ccRasterGrid::convertToCloud(), ccMesh::CreateMobius(), ccMeasurementDevice::createScalarFieldForCloud(), ccCropTool::Crop(), Vector3Tpl< Type >::cross(), cloudViewer::GeometricalAnalysisTools::DetectCircle(), ccGriddedTools::DetectParameters(), ecvDisplayTools::Display3DLabel(), PclUtils::PCLVis::displayText(), PCLDisplayTools::displayText(), DistanceMapGenerationDlg::DistanceMapGenerationDlg(), qCSF::doAction(), qHoughNormals::doAction(), ccGraphicalSegmentationTool::doActionUseExistingPolyline(), ccGraphicalSegmentationTool::doExportSegmentationPolyline(), Vector3Tpl< Type >::dot(), PCLDisplayTools::drawBBox(), cc2DViewportLabel::drawMeOnly(), ccClipBox::drawMeOnly(), ccGBLSensor::drawMeOnly(), ccPolyline::drawMeOnly(), ccPointPair::drawMeOnly(), ccTrace::drawMeOnly(), ccSymbolCloud::drawMeOnly(), cc2DLabel::drawMeOnly2D(), cc2DLabel::drawMeOnly3D(), ccHObject::drawNameIn3D(), ccSphere::drawNameIn3D(), DrawUnitArrow(), DrawUnitTorus(), PCLDisplayTools::drawWidgets(), ccCompass::estimateStrain(), ccCompass::estimateStructureNormals(), ccRasterizeTool::exportContourLines(), qFacets::exportFacets(), ccPointListPickingDlg::exportToASCII(), cloudViewer::DgmOctree::extractCCs(), FastMarchingForFacetExtraction::ExtractPlanarFacets(), MatrixDisplayDlg::fillDialogWith(), ccPropertiesTreeDelegate::fillWithFacet(), ccPropertiesTreeDelegate::fillWithHObject(), ccPropertiesTreeDelegate::fillWithPlanarEntity(), ccPropertiesTreeDelegate::fillWithShifted(), cloudViewer::RegistrationTools::FilterTransformation(), qVoxFallTools::FindAdjacents(), cloudViewer::FPCSRegistrationTools::FindBase(), ccQuadric::Fit(), GrainsAsEllipsoids::fitEllipsoidToGrain(), PointCloudLODVisibilityFlagger::flag(), NumpyCloud::forEach(), FromCCLibMatrix(), FromFbxMesh(), ccCameraSensor::fromImageCoordToLocalCoord(), cloudViewer::t::geometry::AxisAlignedBoundingBox::FromLegacy(), ccCameraSensor::fromLocalCoordToImageCoord(), ccUnrollDlg::fromPersistentSettings(), ccGLMatrixTpl< T >::FromToRotation(), ccGLMatrixTpl< T >::FromViewDirAndUpDir(), cloudViewer::AutoSegmentationTools::frontPropagationBasedSegmentation(), colmap::mvs::GenerateCandidate(), ccRasterizeTool::generateContours(), cloudViewer::DgmOctree::GenerateTruncatedCellCode(), ecvDisplayTools::GenerateViewMat(), cloudViewer::DgmOctree::genericBuild(), get_subset(), cc2smReader::getAsPointNormal(), NumpyCloud::getBoundingBox(), cloudViewer::BoundingBoxTpl< T >::getBounds(), cloudViewer::DgmOctree::getCellDistanceFromBorders(), cloudViewer::DgmOctree::getCellPos(), qCanupo2DViewDialog::getClickPos(), getCommonPtsIdx(), getDensity(), ccPlane::getEquation(), ccQuadric::getEquationString(), cc2DLabel::getLabelContent(), cloudViewer::BoundingBoxTpl< T >::getMaxBoxDim(), cloudViewer::BoundingBoxTpl< T >::getMinBoxDim(), getMortarMaps(), cloudViewer::DgmOctree::getNeighborCellsAround(), PointCloudWrapper< Real >::getNormal(), cc2smReader::getNormals(), ccCameraSensor::getOwnBB(), ccCameraSensor::getOwnFitBB(), ccGLMatrixTpl< T >::getParameters(), cc2smReader::getPclCloud2(), cc2smReader::getPclPolygon(), PointCloudWrapper< Real >::getPoint(), cloudViewer::GenericIndexedCloud::getPoint(), cloudViewer::PointCloudTpl< T >::getPoint(), NumpyCloud::getPoint(), cloudViewer::DgmOctree::getPointsInBoxNeighbourhood(), cloudViewer::DgmOctree::getPointsInCylindricalNeighbourhood(), cloudViewer::DgmOctree::getPointsInCylindricalNeighbourhoodProgressive(), cloudViewer::DgmOctree::getPointsInNeighbourCellsAround(), cloudViewer::DgmOctree::getPointsInSphericalNeighbourhood(), GetPolylineMetaVector(), cc2smReader::getRawXYZ(), cloudViewer::DgmOctree::getTheCellPosWhichIncludesThePoint(), cloudViewer::FastMarching::getTime(), ccGeomFeaturesDlg::getUpDirection(), cloudViewer::Grid3D< Type >::getValue(), AABox::getVertexN(), AACube::getVertexN(), AABox::getVertexP(), AACube::getVertexP(), cc2smReader::getVtkPolyDataFromMeshCloud(), cc2smReader::getXYZ2(), PCVContext::GLAccumPixel(), ccPlanarEntityInterface::glDrawNormal(), GrainsAsEllipsoids::GrainsAsEllipsoids(), qVoxFallTools::Grid2Index(), qM3C2Tools::GuessBestParams(), LasWaveformSaver::handlePoint(), qVoxFallTools::Index2Grid(), cloudViewer::ChamferDistanceTransform::init(), StereogramWidget::init(), cloudViewer::Grid3D< Type >::init(), ccGLMatrixTpl< T >::initFromParameters(), cloudViewer::SaitoSquaredDistanceTransform::initGrid(), cloudViewer::FastMarching::initGridWithOctree(), InitializeOutputCloud(), cvDistanceTool::initTool(), cvProtractorTool::initTool(), ccPlaneEditDlg::initWithPlane(), cloudViewer::KDTree::insidePointToCellDistance(), ccPointCloud::interpolateColorsFrom(), cloudViewer::SimpleMesh::interpolateNormals(), ccPointCloudInterpolator::InterpolateScalarFieldsFrom(), cloudViewer::DistanceComputationTools::intersectMeshWithOctree(), AABB< T >::intersects(), cloudViewer::Grid3D< Type >::intersectWith(), cloudViewer::ManualSegmentationTools::isPointInsidePoly(), ccShiftedObject::isShifted(), G3Point::G3PointAction::CloudAdaptor::kdtree_get_pt(), cloudViewer::FPCSRegistrationTools::LinesIntersections(), STLFilter::loadASCIIFile(), STLFilter::loadBinaryFile(), LoadCloud(), AsciiFilter::loadCloudFromFormatedAsciiStream(), ecvGenericCameraTool::CameraInfo::loadConfig(), CSVMatrixFilter::loadFile(), ObjFilter::loadFile(), OFFFilter::loadFile(), PTXFilter::loadFile(), VTKFilter::loadFile(), PovFilter::loadFile(), SalomeHydroFilter::loadFile(), SinusxFilter::loadFile(), SimpleBinFilter::loadFile(), LASFWFFilter::loadFile(), LasIOFilter::loadFile(), LASFilter::loadFile(), ecvShiftAndScaleCloudDlg::loadInfoFromFile(), LasMetadata::LoadScaleFrom(), LoadScan(), cloudViewer::CCMiscTools::MakeMinAndMaxCubical(), MakeSquare(), Vector3Tpl< Type >::maxCoeff(), ccMeasurementDevice::measurePointToPlaneDistance(), QVTKWidgetCustom::mouseMoveEvent(), QVTKWidgetCustom::mouseReleaseEvent(), ccClipBox::move3D(), ecvDisplayTools::MoveCamera(), ecvGlobalShiftManager::NeedShift(), cloudViewer::LocalModel::New(), Vector3Tpl< Type >::norm2(), Vector3Tpl< Type >::norm2d(), ccPlaneEditDlg::onDipDirChanged(), ccApplyTransformationDlg::onEulerValueChanged(), ccPlaneEditDlg::onItemPicked(), ecvMeasurementTool::onItemPicked(), ccTracePolylineTool::onItemPicked(), MainWindow::onItemPicked(), ccPlaneEditDlg::onNormalChanged(), ecvDisplayTools::onPointPicking(), ccApplyTransformationDlg::onRotAngleValueChanged(), Vector3Tpl< Type >::operator Vector3Tpl< double >(), Tuple3Tpl< Type >::operator*(), Vector3Tpl< Type >::operator*(), cloudViewer::BoundingBoxTpl< T >::operator*=(), Tuple3Tpl< Type >::operator*=(), Vector3Tpl< Type >::operator*=(), cloudViewer::BoundingBoxTpl< T >::operator+(), Vector3Tpl< Type >::operator+(), Tuple3Tpl< Type >::operator+(), Vector3Tpl< Type >::operator+=(), Tuple3Tpl< Type >::operator+=(), ccGLMatrixTpl< T >::operator+=(), Tuple3Tpl< Type >::operator-(), Vector3Tpl< Type >::operator-(), Vector3Tpl< Type >::operator-=(), Tuple3Tpl< Type >::operator-=(), ccGLMatrixTpl< T >::operator-=(), Tuple3Tpl< Type >::operator/(), Vector3Tpl< Type >::operator/(), Tuple3Tpl< Type >::operator/=(), Vector3Tpl< Type >::operator/=(), Vector3Tpl< Type >::operator=(), ccTrace::optimizeSegment(), optRotY(), ccFastMarchingForNormsDirection::OrientNormals(), ccCameraSensor::orthoRectifyAsImageDirect(), ccGenericPointCloud::pointPicking(), ccOctree::pointPicking(), cloudViewer::KDTree::pointToCellDistances(), cloudViewer::KDTree::pointToCellSquareDistance(), PointToVector(), cloudViewer::FastMarching::pos2index(), masc::ContextBasedFeature::prepare(), CommandCrossSection::process(), CommandRoughness::process(), CommandMatchBBCenters::process(), CommandMatchBestFitPlane::process(), CommandCrop2D::process(), CommandCSF::process(), ccPointPropertiesDlg::processClickedPoint(), ccCommandLineInterface::processGlobalShiftCommand(), ccPointListPickingDlg::processPickedPoint(), Vector3Tpl< Type >::prod(), ecvGenericDisplayTools::Project(), ccGBLSensor::projectNormals(), ProjectOnCone(), ProjectOnCylinder(), ccQuadric::projectOnQuadric(), ccGBLSensor::projectPoint(), cloudViewer::ChamferDistanceTransform::propagateDistance(), Ray< T >::Ray(), cloudViewer::DgmOctree::rayCast(), ccBoundingBoxEditorDlg::reflectChanges(), cloudViewer::RegistrationTools::RegistrationProcedure(), ecvDisplayTools::RenderText(), cvDistanceTool::reset(), cvProtractorTool::reset(), rotY(), DxfProfilesExporter::SaveHorizontalProfiles(), LasSaver::saveNextPoint(), ccPlaneEditDlg::saveParamsAndAccept(), SaveScan(), STLFilter::saveToASCIIFile(), PcdFilter::saveToFile(), AsciiFilter::saveToFile(), DxfFilter::saveToFile(), ObjFilter::saveToFile(), OFFFilter::saveToFile(), VTKFilter::saveToFile(), SalomeHydroFilter::saveToFile(), MAFilter::saveToFile(), MascaretFilter::saveToFile(), SimpleBinFilter::saveToFile(), LASFWFFilter::saveToFile(), LasIOFilter::saveToFile(), LASFilter::saveToFile(), DepthMapFileFilter::saveToFile(), DxfProfilesExporter::SaveVerticalProfiles(), ccPointCloud::scale(), cloudViewer::SaitoSquaredDistanceTransform::SDT_2D(), cloudViewer::SaitoSquaredDistanceTransform::SDT_3D(), G3Point::G3PointAction::segment(), ccGraphicalSegmentationTool::segment(), cloudViewer::ManualSegmentationTools::segment(), ccTracePolylineTool::SegmentGLParams::SegmentGLParams(), cloudViewer::ManualSegmentationTools::segmentMeshWithAABox(), ccOctreeFrustumIntersector::separatingAxisTest(), ccBoundingBoxEditorDlg::setBoxAxes(), QVTKWidgetCustom::setCameraFocalPoint(), QVTKWidgetCustom::setCameraPosition(), QVTKWidgetCustom::setCameraViewUp(), ccGLMatrixTpl< T >::setColumn(), ccPointCloud::setCoordFromSF(), PclUtils::PCLVis::SetDataAxesGridProperties(), LASOpenDlg::setInfos(), LasSaveDialog::setOptimalScale(), LasSaveDialog::setOriginalScale(), ecvDisplayTools::SetPivotPoint(), ccMeasurementRecorder::setPlane(), cloudViewer::PointCloudTpl< T >::setPoint(), PdmsTools::PdmsObjects::Vertex::setPosition(), SetPoylineMetaVector(), ecvShiftAndScaleCloudDlg::setShift(), ecvPrimitiveFactoryDlg::setSpherePositionFromClipboard(), ccGLMatrixTpl< T >::setTranslation(), ccGeomFeaturesDlg::setUpDirection(), cloudViewer::Grid3D< Type >::setValue(), ecvDisplayTools::SetView(), cloudViewer::geometry::Line3D::SlabAABBBase(), cloudViewer::TrueKdTree::split(), ecvDisplayTools::StartCPUBasedPointPicking(), ecvDisplayTools::StartOpenGLPicking(), ccGLMatrixTpl< T >::toAngleAxis(), QVTKWidgetCustom::toDisplayPoint(), Vector3Tpl< Type >::toDouble(), ToFbxMesh(), DistanceMapGenerationDlg::toggleOverlayGrid(), ccUnrollDlg::toPersistentSettings(), ecvGenericCameraTool::CameraInfo::toString(), toTranslatedVector(), QVTKWidgetCustom::toWorldPoint(), ccPointCloud::Translate(), ccGenericMesh::trianglePicking(), cloudViewer::Neighbourhood::triangulateFromQuadric(), cloudViewer::CCMiscTools::TriBoxOverlap(), cloudViewer::CCMiscTools::TriBoxOverlapd(), ccPointCloud::unroll(), ccClipBox::update(), ccColorScale::update(), GamepadInput::update(), ccPointPropertiesDlg::update2DZone(), ccApplyTransformationDlg::updateAll(), ccFitPlane::updateAttributes(), GrainsAsEllipsoids::updateBBoxOnlyOne(), ecvCameraParamEditDlg::updateCamera(), cloudViewer::DgmOctree::updateCellSizeTable(), qCanupo2DViewDialog::updateClassifierPath(), ecvDisplayTools::UpdateConstellationCenterAndZoom(), ccCameraSensor::updateData(), MinimumCutSegmentationDlg::updateForeGroundPoint(), ecvShiftAndScaleCloudDlg::updateGlobalSystem(), cloudViewer::KDTree::updateInsideBoundingBox(), ecvShiftAndScaleCloudDlg::updateLocalSystem(), GrainsAsEllipsoids::updateMeshAndLineSet(), ccLineation::updateMetadata(), ccThickness::updateMetadata(), DistanceMapGenerationDlg::updateMinAndMaxLimits(), ccNormalVectors::UpdateNormalOrientations(), ecvCameraParamEditDlg::updatePivotPoint(), ccGraphicalSegmentationTool::updatePolyLine(), ccTracePolylineTool::updatePolyLineTip(), ecvAnimationParamDlg::updateRotationAxisPoint(), ecvCameraParamEditDlg::updateUi(), DistanceMapGenerationDlg::updateZoom(), vertex_cb(), Vector3Tpl< Type >::vset(), G3Point::G3PointAction::wolman(), and ccContourExtractorDlg::zoomOn().

◆ y

template<class Type >
Type Tuple3Tpl< Type >::y

Definition at line 137 of file CVGeom.h.

Referenced by AABB< T >::AABB(), cloudViewer::BoundingBoxTpl< T >::add(), ccMPlaneDlg::addFittingPoint(), cloudViewer::PointCloudTpl< T >::addPoint(), AddPointCoordinates(), ccGraphicalSegmentationTool::addPointToPolyline(), MainWindow::addToDB(), ccGraphicalTransformationTool::apply(), ccPointPairRegistrationDlg::apply(), ccGLMatrixTpl< T >::applyRotation(), ccGLMatrixTpl< T >::applyX(), ccGLMatrixTpl< T >::applyY(), ccGLMatrixTpl< T >::applyZ(), ecvGlobalShiftManager::BestShift(), ccBox::buildUp(), ccCone::buildUp(), ccDisc::buildUp(), ccDish::buildUp(), ccQuadric::buildUp(), ccSphere::buildUp(), ccTorus::buildUp(), ccGLMatrixTpl< T >::ccGLMatrixTpl(), ccPlaneEditDlg::ccPlaneEditDlg(), ccScaleDlg::ccScaleDlg(), LasSaveDialog::chosenScale(), G3Point::G3PointAction::cleanLabels(), ComparisonY(), GeneralFilters::compute(), qVoxFallProcess::Compute(), cloudViewer::Neighbourhood::compute3DQuadric(), cloudViewer::DistanceComputationTools::computeApproxCloud2CloudDistance(), cloudViewer::DgmOctreeReferenceCloud::computeBB(), cloudViewer::DgmOctree::computeCellCenter(), cloudViewer::DistanceComputationTools::computeCellHausdorffDistance(), cloudViewer::DistanceComputationTools::computeCellHausdorffDistanceWithLocalModel(), cloudViewer::DgmOctree::computeCellLimits(), cloudViewer::Grid3D< Type >::computeCellPos(), cloudViewer::DistanceComputationTools::computeCloud2BoxEquation(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistances(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistanceWithOctree(), cloudViewer::DistanceComputationTools::computeCloud2PolylineEquation(), ComputeClusterVolume(), cloudViewer::Neighbourhood::computeCovarianceMatrix(), cloudViewer::GeometricalAnalysisTools::ComputeCovarianceMatrix(), cloudViewer::GeometricalAnalysisTools::ComputeCrossCovarianceMatrix(), cloudViewer::Neighbourhood::computeCurvature(), ComputeFacetExtensions(), ccCameraSensor::computeGlobalPlaneCoefficients(), cloudViewer::Neighbourhood::computeGravityCenter(), ccMesh::computeInterpolationWeights(), ccGenericMesh::computeInterpolationWeights(), cloudViewer::Neighbourhood::computeLeastSquareBestFittingPlane(), cloudViewer::MeshSamplingTools::computeMeshVolume(), cloudViewer::DgmOctree::ComputeMinDistanceToCellBorder(), ComputeNeighborhood2MeshDistancesWithOctree(), ccNormalVectors::ComputeNormalWithQuadric(), ccEntityAction::computeOctree(), ccCameraSensor::computeOrthoRectificationParams(), ComputePMUncertainty(), cloudViewer::DistanceComputationTools::computePoint2TriangleDistance(), ccGenericMesh::computePointPosition(), cloudViewer::Neighbourhood::computeQuadric(), DistanceMapGenerationTool::ComputeRadialDist(), DimensionalityScaleParamsComputer::computeScaleParams(), cloudViewer::GeometricalAnalysisTools::ComputeSphereFrom4(), DistanceMapGenerationTool::ComputeSurfacesAndVolumes(), FastMarchingForFacetExtraction::computeTCoefApprox(), ccCameraSensor::computeUncertainty(), masc::ContextBasedFeature::computeValue(), cloudViewer::BoundingBoxTpl< T >::computeVolume(), cloudViewer::GeometricalAnalysisTools::ComputeWeightedCrossCovarianceMatrix(), cloudViewer::BoundingBoxTpl< T >::contains(), cloudViewer::BoundingBoxTpl< T >::containsEigen(), contourPoly(), contourPoly2(), ConverFromTo(), DistanceMapGenerationTool::ConvertCloudToCylindrical(), DistanceMapGenerationTool::ConvertMapToCloud(), ecvDisplayTools::ConvertMousePositionToOrientation(), ccNormalVectors::ConvertNormalToDipAndDipDir(), ccNormalVectors::ConvertNormalToRGB(), ccNormalVectors::ConvertNormalToStrikeAndDip(), DistanceMapGenerationTool::ConvertProfileToMesh(), ccRasterGrid::convertToCloud(), ccMesh::CreateMobius(), ccMeasurementDevice::createScalarFieldForCloud(), ccCropTool::Crop(), Vector3Tpl< Type >::cross(), cloudViewer::GeometricalAnalysisTools::DetectCircle(), ccGriddedTools::DetectParameters(), ecvDisplayTools::Display3DLabel(), PclUtils::PCLVis::displayText(), PCLDisplayTools::displayText(), DistanceMapGenerationDlg::DistanceMapGenerationDlg(), qCSF::doAction(), qHoughNormals::doAction(), ccGraphicalSegmentationTool::doActionUseExistingPolyline(), ccGraphicalSegmentationTool::doExportSegmentationPolyline(), Vector3Tpl< Type >::dot(), PCLDisplayTools::drawBBox(), cc2DViewportLabel::drawMeOnly(), ccClipBox::drawMeOnly(), ccGBLSensor::drawMeOnly(), ccPolyline::drawMeOnly(), ccPointPair::drawMeOnly(), ccTrace::drawMeOnly(), ccSymbolCloud::drawMeOnly(), cc2DLabel::drawMeOnly2D(), cc2DLabel::drawMeOnly3D(), ccHObject::drawNameIn3D(), ccSphere::drawNameIn3D(), DrawUnitArrow(), DrawUnitTorus(), PCLDisplayTools::drawWidgets(), ccCompass::estimateStrain(), ccCompass::estimateStructureNormals(), ccRasterizeTool::exportContourLines(), qFacets::exportFacets(), ccPointListPickingDlg::exportToASCII(), cloudViewer::DgmOctree::extractCCs(), ccContourExtractor::ExtractFlatContour(), FastMarchingForFacetExtraction::ExtractPlanarFacets(), MatrixDisplayDlg::fillDialogWith(), ccPropertiesTreeDelegate::fillWithFacet(), ccPropertiesTreeDelegate::fillWithHObject(), ccPropertiesTreeDelegate::fillWithPlanarEntity(), ccPropertiesTreeDelegate::fillWithShifted(), cloudViewer::RegistrationTools::FilterTransformation(), qVoxFallTools::FindAdjacents(), cloudViewer::FPCSRegistrationTools::FindBase(), ccQuadric::Fit(), GrainsAsEllipsoids::fitEllipsoidToGrain(), PointCloudLODVisibilityFlagger::flag(), NumpyCloud::forEach(), FromCCLibMatrix(), FromFbxMesh(), ccCameraSensor::fromImageCoordToLocalCoord(), cloudViewer::t::geometry::AxisAlignedBoundingBox::FromLegacy(), ccCameraSensor::fromLocalCoordToImageCoord(), ccUnrollDlg::fromPersistentSettings(), ccGLMatrixTpl< T >::FromToRotation(), ccGLMatrixTpl< T >::FromViewDirAndUpDir(), cloudViewer::AutoSegmentationTools::frontPropagationBasedSegmentation(), colmap::mvs::GenerateCandidate(), ccRasterizeTool::generateContours(), cloudViewer::DgmOctree::GenerateTruncatedCellCode(), ecvDisplayTools::GenerateViewMat(), cloudViewer::DgmOctree::genericBuild(), get_subset(), cc2smReader::getAsPointNormal(), NumpyCloud::getBoundingBox(), cloudViewer::BoundingBoxTpl< T >::getBounds(), cloudViewer::DgmOctree::getCellDistanceFromBorders(), cloudViewer::DgmOctree::getCellPos(), qCanupo2DViewDialog::getClickPos(), getDensity(), ccPlane::getEquation(), ccQuadric::getEquationString(), cc2DLabel::getLabelContent(), cloudViewer::BoundingBoxTpl< T >::getMaxBoxDim(), cloudViewer::BoundingBoxTpl< T >::getMinBoxDim(), getMortarMaps(), cloudViewer::DgmOctree::getNeighborCellsAround(), PointCloudWrapper< Real >::getNormal(), cc2smReader::getNormals(), ccCameraSensor::getOwnBB(), ccCameraSensor::getOwnFitBB(), ccGLMatrixTpl< T >::getParameters(), cc2smReader::getPclCloud2(), cc2smReader::getPclPolygon(), PointCloudWrapper< Real >::getPoint(), cloudViewer::GenericIndexedCloud::getPoint(), cloudViewer::PointCloudTpl< T >::getPoint(), NumpyCloud::getPoint(), cloudViewer::DgmOctree::getPointsInBoxNeighbourhood(), cloudViewer::DgmOctree::getPointsInCylindricalNeighbourhood(), cloudViewer::DgmOctree::getPointsInCylindricalNeighbourhoodProgressive(), cloudViewer::DgmOctree::getPointsInNeighbourCellsAround(), cloudViewer::DgmOctree::getPointsInSphericalNeighbourhood(), GetPolylineMetaVector(), cc2smReader::getRawXYZ(), cloudViewer::DgmOctree::getTheCellPosWhichIncludesThePoint(), cloudViewer::FastMarching::getTime(), ccGeomFeaturesDlg::getUpDirection(), cloudViewer::Grid3D< Type >::getValue(), AABox::getVertexN(), AACube::getVertexN(), AABox::getVertexP(), AACube::getVertexP(), cc2smReader::getVtkPolyDataFromMeshCloud(), cc2smReader::getXYZ2(), PCVContext::GLAccumPixel(), ccPlanarEntityInterface::glDrawNormal(), GrainsAsEllipsoids::GrainsAsEllipsoids(), qVoxFallTools::Grid2Index(), qM3C2Tools::GuessBestParams(), LasWaveformSaver::handlePoint(), qVoxFallTools::Index2Grid(), cloudViewer::ChamferDistanceTransform::init(), StereogramWidget::init(), cloudViewer::Grid3D< Type >::init(), ccGLMatrixTpl< T >::initFromParameters(), cloudViewer::SaitoSquaredDistanceTransform::initGrid(), cloudViewer::FastMarching::initGridWithOctree(), InitializeOutputCloud(), cvDistanceTool::initTool(), cvProtractorTool::initTool(), ccPlaneEditDlg::initWithPlane(), cloudViewer::KDTree::insidePointToCellDistance(), ccPointCloud::interpolateColorsFrom(), cloudViewer::SimpleMesh::interpolateNormals(), ccPointCloudInterpolator::InterpolateScalarFieldsFrom(), cloudViewer::DistanceComputationTools::intersectMeshWithOctree(), AABB< T >::intersects(), cloudViewer::Grid3D< Type >::intersectWith(), cloudViewer::ManualSegmentationTools::isPointInsidePoly(), ccShiftedObject::isShifted(), G3Point::G3PointAction::CloudAdaptor::kdtree_get_pt(), cloudViewer::FPCSRegistrationTools::LinesIntersections(), STLFilter::loadASCIIFile(), STLFilter::loadBinaryFile(), LoadCloud(), AsciiFilter::loadCloudFromFormatedAsciiStream(), ecvGenericCameraTool::CameraInfo::loadConfig(), ObjFilter::loadFile(), OFFFilter::loadFile(), PTXFilter::loadFile(), VTKFilter::loadFile(), SalomeHydroFilter::loadFile(), SinusxFilter::loadFile(), SimpleBinFilter::loadFile(), LASFWFFilter::loadFile(), LasIOFilter::loadFile(), LASFilter::loadFile(), ecvShiftAndScaleCloudDlg::loadInfoFromFile(), LasMetadata::LoadScaleFrom(), LoadScan(), cloudViewer::CCMiscTools::MakeMinAndMaxCubical(), MakeSquare(), Vector3Tpl< Type >::maxCoeff(), ccMeasurementDevice::measurePointToPlaneDistance(), QVTKWidgetCustom::mouseMoveEvent(), QVTKWidgetCustom::mouseReleaseEvent(), ccClipBox::move3D(), ecvDisplayTools::MoveCamera(), ecvGlobalShiftManager::NeedShift(), cloudViewer::LocalModel::New(), Vector3Tpl< Type >::norm2(), Vector3Tpl< Type >::norm2d(), ccPlaneEditDlg::onDipDirChanged(), ccApplyTransformationDlg::onEulerValueChanged(), ccPlaneEditDlg::onItemPicked(), ecvMeasurementTool::onItemPicked(), ccTracePolylineTool::onItemPicked(), MainWindow::onItemPicked(), ccPlaneEditDlg::onNormalChanged(), ecvDisplayTools::onPointPicking(), ccApplyTransformationDlg::onRotAngleValueChanged(), Vector3Tpl< Type >::operator Vector3Tpl< double >(), Tuple3Tpl< Type >::operator*(), Vector3Tpl< Type >::operator*(), cloudViewer::BoundingBoxTpl< T >::operator*=(), Tuple3Tpl< Type >::operator*=(), Vector3Tpl< Type >::operator*=(), cloudViewer::BoundingBoxTpl< T >::operator+(), Vector3Tpl< Type >::operator+(), Tuple3Tpl< Type >::operator+(), Vector3Tpl< Type >::operator+=(), Tuple3Tpl< Type >::operator+=(), ccGLMatrixTpl< T >::operator+=(), Tuple3Tpl< Type >::operator-(), Vector3Tpl< Type >::operator-(), Vector3Tpl< Type >::operator-=(), Tuple3Tpl< Type >::operator-=(), ccGLMatrixTpl< T >::operator-=(), Tuple3Tpl< Type >::operator/(), Vector3Tpl< Type >::operator/(), Tuple3Tpl< Type >::operator/=(), Vector3Tpl< Type >::operator/=(), Vector3Tpl< Type >::operator=(), ccTrace::optimizeSegment(), optRotY(), ccFastMarchingForNormsDirection::OrientNormals(), ccCameraSensor::orthoRectifyAsImageDirect(), ccGenericPointCloud::pointPicking(), ccOctree::pointPicking(), cloudViewer::KDTree::pointToCellDistances(), cloudViewer::KDTree::pointToCellSquareDistance(), PointToVector(), cloudViewer::FastMarching::pos2index(), masc::ContextBasedFeature::prepare(), CommandCrossSection::process(), CommandRoughness::process(), CommandMatchBBCenters::process(), CommandMatchBestFitPlane::process(), CommandCrop2D::process(), CommandCSF::process(), ccPointPropertiesDlg::processClickedPoint(), ccCommandLineInterface::processGlobalShiftCommand(), ccPointListPickingDlg::processPickedPoint(), Vector3Tpl< Type >::prod(), ecvGenericDisplayTools::Project(), ccGBLSensor::projectNormals(), ProjectOnCone(), ProjectOnCylinder(), ccQuadric::projectOnQuadric(), ccGBLSensor::projectPoint(), cloudViewer::ChamferDistanceTransform::propagateDistance(), Ray< T >::Ray(), cloudViewer::DgmOctree::rayCast(), ccBoundingBoxEditorDlg::reflectChanges(), cloudViewer::RegistrationTools::RegistrationProcedure(), ecvDisplayTools::RenderText(), cvDistanceTool::reset(), cvProtractorTool::reset(), rotY(), DxfProfilesExporter::SaveHorizontalProfiles(), LasSaver::saveNextPoint(), ccPlaneEditDlg::saveParamsAndAccept(), SaveScan(), STLFilter::saveToASCIIFile(), PcdFilter::saveToFile(), AsciiFilter::saveToFile(), DxfFilter::saveToFile(), ObjFilter::saveToFile(), OFFFilter::saveToFile(), VTKFilter::saveToFile(), SalomeHydroFilter::saveToFile(), MAFilter::saveToFile(), MascaretFilter::saveToFile(), SimpleBinFilter::saveToFile(), LASFWFFilter::saveToFile(), LasIOFilter::saveToFile(), LASFilter::saveToFile(), DepthMapFileFilter::saveToFile(), DxfProfilesExporter::SaveVerticalProfiles(), ccPointCloud::scale(), cloudViewer::SaitoSquaredDistanceTransform::SDT_2D(), cloudViewer::SaitoSquaredDistanceTransform::SDT_3D(), G3Point::G3PointAction::segment(), ccGraphicalSegmentationTool::segment(), cloudViewer::ManualSegmentationTools::segment(), ccTracePolylineTool::SegmentGLParams::SegmentGLParams(), cloudViewer::ManualSegmentationTools::segmentMeshWithAABox(), ccOctreeFrustumIntersector::separatingAxisTest(), ccBoundingBoxEditorDlg::setBoxAxes(), QVTKWidgetCustom::setCameraFocalPoint(), QVTKWidgetCustom::setCameraPosition(), QVTKWidgetCustom::setCameraViewUp(), ccGLMatrixTpl< T >::setColumn(), ccPointCloud::setCoordFromSF(), PclUtils::PCLVis::SetDataAxesGridProperties(), LASOpenDlg::setInfos(), LasSaveDialog::setOptimalScale(), LasSaveDialog::setOriginalScale(), ecvDisplayTools::SetPivotPoint(), ccMeasurementRecorder::setPlane(), cloudViewer::PointCloudTpl< T >::setPoint(), PdmsTools::PdmsObjects::Vertex::setPosition(), SetPoylineMetaVector(), ecvShiftAndScaleCloudDlg::setShift(), ecvPrimitiveFactoryDlg::setSpherePositionFromClipboard(), ccGLMatrixTpl< T >::setTranslation(), ccGeomFeaturesDlg::setUpDirection(), cloudViewer::Grid3D< Type >::setValue(), ecvDisplayTools::SetView(), cloudViewer::geometry::Line3D::SlabAABBBase(), cloudViewer::TrueKdTree::split(), ecvDisplayTools::StartCPUBasedPointPicking(), ecvDisplayTools::StartOpenGLPicking(), ccGLMatrixTpl< T >::toAngleAxis(), QVTKWidgetCustom::toDisplayPoint(), Vector3Tpl< Type >::toDouble(), ToFbxMesh(), DistanceMapGenerationDlg::toggleOverlayGrid(), ccUnrollDlg::toPersistentSettings(), ecvGenericCameraTool::CameraInfo::toString(), toTranslatedVector(), ecvDisplayTools::ToVtkCoordinates(), QVTKWidgetCustom::toWorldPoint(), qCanupoTools::TrainClassifier(), ccPointCloud::Translate(), ccGenericMesh::trianglePicking(), cloudViewer::Neighbourhood::triangulateFromQuadric(), cloudViewer::CCMiscTools::TriBoxOverlap(), cloudViewer::CCMiscTools::TriBoxOverlapd(), ccPointCloud::unroll(), ccClipBox::update(), ccColorScale::update(), GamepadInput::update(), ccPointPropertiesDlg::update2DZone(), ccApplyTransformationDlg::updateAll(), ccFitPlane::updateAttributes(), GrainsAsEllipsoids::updateBBoxOnlyOne(), ecvCameraParamEditDlg::updateCamera(), qCanupo2DViewDialog::updateClassifierPath(), ecvDisplayTools::UpdateConstellationCenterAndZoom(), ccCameraSensor::updateData(), MinimumCutSegmentationDlg::updateForeGroundPoint(), ecvShiftAndScaleCloudDlg::updateGlobalSystem(), cloudViewer::KDTree::updateInsideBoundingBox(), ecvShiftAndScaleCloudDlg::updateLocalSystem(), GrainsAsEllipsoids::updateMeshAndLineSet(), ccLineation::updateMetadata(), ccThickness::updateMetadata(), DistanceMapGenerationDlg::updateMinAndMaxLimits(), ccNormalVectors::UpdateNormalOrientations(), ecvCameraParamEditDlg::updatePivotPoint(), ccGraphicalSegmentationTool::updatePolyLine(), ccTracePolylineTool::updatePolyLineTip(), ecvAnimationParamDlg::updateRotationAxisPoint(), ecvCameraParamEditDlg::updateUi(), DistanceMapGenerationDlg::updateZoom(), vertex_cb(), Vector3Tpl< Type >::vset(), G3Point::G3PointAction::wolman(), and ccContourExtractorDlg::zoomOn().

◆ z

template<class Type >
Type Tuple3Tpl< Type >::z

Definition at line 137 of file CVGeom.h.

Referenced by AABB< T >::AABB(), cloudViewer::BoundingBoxTpl< T >::add(), ccMPlaneDlg::addFittingPoint(), cloudViewer::PointCloudTpl< T >::addPoint(), AddPointCoordinates(), MainWindow::addToDB(), ccGraphicalTransformationTool::apply(), ccPointPairRegistrationDlg::apply(), ccGLMatrixTpl< T >::applyRotation(), ccCameraSensor::applyViewport(), ccGLMatrixTpl< T >::applyX(), ccGLMatrixTpl< T >::applyY(), ccGLMatrixTpl< T >::applyZ(), ecvGlobalShiftManager::BestShift(), ccBox::buildUp(), ccCone::buildUp(), ccDisc::buildUp(), ccDish::buildUp(), ccQuadric::buildUp(), ccSphere::buildUp(), ccTorus::buildUp(), ccFitPlane::ccFitPlane(), ccGLMatrixTpl< T >::ccGLMatrixTpl(), ccPlaneEditDlg::ccPlaneEditDlg(), ccScaleDlg::ccScaleDlg(), LasSaveDialog::chosenScale(), G3Point::G3PointAction::cleanLabels(), cloud2binary(), ComparisonZ(), GeneralFilters::compute(), qVoxFallProcess::Compute(), cloudViewer::Neighbourhood::compute3DQuadric(), cloudViewer::DistanceComputationTools::computeApproxCloud2CloudDistance(), cloudViewer::DgmOctreeReferenceCloud::computeBB(), cloudViewer::DgmOctree::computeCellCenter(), cloudViewer::DistanceComputationTools::computeCellHausdorffDistance(), cloudViewer::DistanceComputationTools::computeCellHausdorffDistanceWithLocalModel(), cloudViewer::DgmOctree::computeCellLimits(), cloudViewer::Grid3D< Type >::computeCellPos(), cloudViewer::DistanceComputationTools::computeCloud2BoxEquation(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistances(), cloudViewer::DistanceComputationTools::computeCloud2MeshDistanceWithOctree(), cloudViewer::DistanceComputationTools::computeCloud2PolylineEquation(), ComputeClusterVolume(), ComputeCorePointNormal(), cloudViewer::Neighbourhood::computeCovarianceMatrix(), cloudViewer::GeometricalAnalysisTools::ComputeCovarianceMatrix(), cloudViewer::GeometricalAnalysisTools::ComputeCrossCovarianceMatrix(), ccCameraSensor::computeFrustumCorners(), ccCameraSensor::computeGlobalPlaneCoefficients(), cloudViewer::Neighbourhood::computeGravityCenter(), ccMesh::computeInterpolationWeights(), ccGenericMesh::computeInterpolationWeights(), cloudViewer::Neighbourhood::computeLeastSquareBestFittingPlane(), cloudViewer::MeshSamplingTools::computeMeshVolume(), cloudViewer::DgmOctree::ComputeMinDistanceToCellBorder(), ComputeNeighborhood2MeshDistancesWithOctree(), ccNormalVectors::ComputeNormalWithQuadric(), ccEntityAction::computeOctree(), ComputePMUncertainty(), cloudViewer::DistanceComputationTools::computePoint2TriangleDistance(), ccGenericMesh::computePointPosition(), cloudViewer::Neighbourhood::computeQuadric(), cloudViewer::GeometricalAnalysisTools::ComputeSphereFrom4(), FastMarchingForFacetExtraction::computeTCoefApprox(), ccCameraSensor::computeUncertainty(), ccCameraSensor::computeUpperLeftPoint(), masc::NeighborhoodFeature::computeValue(), masc::ContextBasedFeature::computeValue(), cloudViewer::BoundingBoxTpl< T >::computeVolume(), cloudViewer::GeometricalAnalysisTools::ComputeWeightedCrossCovarianceMatrix(), cloudViewer::BoundingBoxTpl< T >::contains(), cloudViewer::BoundingBoxTpl< T >::containsEigen(), contourPoly(), contourPoly2(), ConverFromTo(), DistanceMapGenerationTool::ConvertCloudToCylindrical(), ecvDisplayTools::ConvertMousePositionToOrientation(), ccNormalVectors::ConvertNormalToDipAndDipDir(), ccNormalVectors::ConvertNormalToRGB(), ccNormalVectors::ConvertNormalToStrikeAndDip(), ccRasterGrid::convertToCloud(), ccMesh::CreateMobius(), ccMeasurementDevice::createScalarFieldForCloud(), ccCropTool::Crop(), Vector3Tpl< Type >::cross(), cloudViewer::GeometricalAnalysisTools::DetectCircle(), ccGriddedTools::DetectParameters(), ecvDisplayTools::Display3DLabel(), PclUtils::PCLVis::displayText(), DistanceMapGenerationDlg::DistanceMapGenerationDlg(), qCSF::doAction(), qHoughNormals::doAction(), ccGraphicalSegmentationTool::doActionUseExistingPolyline(), Vector3Tpl< Type >::dot(), PCLDisplayTools::drawBBox(), ccClipBox::drawMeOnly(), ccGBLSensor::drawMeOnly(), ccPolyline::drawMeOnly(), ccPointPair::drawMeOnly(), ccTrace::drawMeOnly(), cc2DLabel::drawMeOnly2D(), cc2DLabel::drawMeOnly3D(), DrawUnitArrow(), DrawUnitTorus(), PCLDisplayTools::drawWidgets(), ccCompass::estimateStrain(), ccCompass::estimateStructureNormals(), ccRasterizeTool::exportContourLines(), qFacets::exportFacets(), ccPointListPickingDlg::exportToASCII(), cloudViewer::DgmOctree::extractCCs(), FastMarchingForFacetExtraction::ExtractPlanarFacets(), MatrixDisplayDlg::fillDialogWith(), ccPropertiesTreeDelegate::fillWithFacet(), ccPropertiesTreeDelegate::fillWithHObject(), ccPropertiesTreeDelegate::fillWithPlanarEntity(), ccPropertiesTreeDelegate::fillWithShifted(), cloudViewer::RegistrationTools::FilterTransformation(), qVoxFallTools::FindAdjacents(), cloudViewer::FPCSRegistrationTools::FindBase(), ccQuadric::Fit(), GrainsAsEllipsoids::fitEllipsoidToGrain(), PointCloudLODVisibilityFlagger::flag(), NumpyCloud::forEach(), FromCCLibMatrix(), FromFbxMesh(), ccCameraSensor::fromImageCoordToGlobalCoord(), cloudViewer::t::geometry::AxisAlignedBoundingBox::FromLegacy(), ccCameraSensor::fromLocalCoordToImageCoord(), ccUnrollDlg::fromPersistentSettings(), ccGLMatrixTpl< T >::FromToRotation(), ccGLMatrixTpl< T >::FromViewDirAndUpDir(), cloudViewer::AutoSegmentationTools::frontPropagationBasedSegmentation(), colmap::mvs::GenerateCandidate(), ccRasterizeTool::generateContours(), cloudViewer::DgmOctree::GenerateTruncatedCellCode(), ecvDisplayTools::GenerateViewMat(), cloudViewer::DgmOctree::genericBuild(), get_subset(), cc2smReader::getAsPointNormal(), NumpyCloud::getBoundingBox(), cloudViewer::BoundingBoxTpl< T >::getBounds(), cloudViewer::DgmOctree::getCellDistanceFromBorders(), cloudViewer::DgmOctree::getCellPos(), qCanupo2DViewDialog::getClickPos(), getCommonPtsIdx(), getDensity(), ccPlane::getEquation(), ccQuadric::getEquationString(), cc2DLabel::getLabelContent(), cloudViewer::BoundingBoxTpl< T >::getMaxBoxDim(), cloudViewer::BoundingBoxTpl< T >::getMinBoxDim(), getMortarMaps(), cloudViewer::DgmOctree::getNeighborCellsAround(), PointCloudWrapper< Real >::getNormal(), cc2smReader::getNormals(), cvContourTool::getOutput(), ccCameraSensor::getOwnBB(), ccCameraSensor::getOwnFitBB(), ccGLMatrixTpl< T >::getParameters(), cc2smReader::getPclCloud2(), cc2smReader::getPclPolygon(), PointCloudWrapper< Real >::getPoint(), cloudViewer::GenericIndexedCloud::getPoint(), cloudViewer::PointCloudTpl< T >::getPoint(), NumpyCloud::getPoint(), cloudViewer::DgmOctree::getPointsInBoxNeighbourhood(), cloudViewer::DgmOctree::getPointsInCylindricalNeighbourhood(), cloudViewer::DgmOctree::getPointsInCylindricalNeighbourhoodProgressive(), cloudViewer::DgmOctree::getPointsInNeighbourCellsAround(), cloudViewer::DgmOctree::getPointsInSphericalNeighbourhood(), GetPolylineMetaVector(), cc2smReader::getRawXYZ(), ecvDisplayTools::GetRealCameraCenter(), cloudViewer::DgmOctree::getTheCellPosWhichIncludesThePoint(), cloudViewer::FastMarching::getTime(), ccGeomFeaturesDlg::getUpDirection(), cloudViewer::Grid3D< Type >::getValue(), AABox::getVertexN(), AACube::getVertexN(), AABox::getVertexP(), AACube::getVertexP(), cc2smReader::getVtkPolyDataFromMeshCloud(), cc2smReader::getXYZ2(), PCVContext::GLAccumPixel(), ccPlanarEntityInterface::glDrawNormal(), GrainsAsEllipsoids::GrainsAsEllipsoids(), qVoxFallTools::Grid2Index(), qM3C2Tools::GuessBestParams(), LasWaveformSaver::handlePoint(), ccCompass::importFoliations(), ccCompassImport::importFoliations(), cloudViewer::ChamferDistanceTransform::init(), StereogramWidget::init(), cloudViewer::Grid3D< Type >::init(), ccGLMatrixTpl< T >::initFromParameters(), cloudViewer::SaitoSquaredDistanceTransform::initGrid(), cloudViewer::FastMarching::initGridWithOctree(), InitializeOutputCloud(), cvDistanceTool::initTool(), cvProtractorTool::initTool(), ccPlaneEditDlg::initWithPlane(), cloudViewer::KDTree::insidePointToCellDistance(), ccPointCloud::interpolateColorsFrom(), cloudViewer::SimpleMesh::interpolateNormals(), ccPointCloudInterpolator::InterpolateScalarFieldsFrom(), cloudViewer::DistanceComputationTools::intersectMeshWithOctree(), AABB< T >::intersects(), cloudViewer::Grid3D< Type >::intersectWith(), ccCameraSensor::isGlobalCoordInFrustum(), ccShiftedObject::isShifted(), G3Point::G3PointAction::CloudAdaptor::kdtree_get_pt(), cloudViewer::FPCSRegistrationTools::LinesIntersections(), STLFilter::loadASCIIFile(), STLFilter::loadBinaryFile(), LoadCloud(), AsciiFilter::loadCloudFromFormatedAsciiStream(), ecvGenericCameraTool::CameraInfo::loadConfig(), CSVMatrixFilter::loadFile(), ObjFilter::loadFile(), OFFFilter::loadFile(), PTXFilter::loadFile(), VTKFilter::loadFile(), SalomeHydroFilter::loadFile(), SinusxFilter::loadFile(), SimpleBinFilter::loadFile(), LASFWFFilter::loadFile(), LasIOFilter::loadFile(), LASFilter::loadFile(), ecvShiftAndScaleCloudDlg::loadInfoFromFile(), LasMetadata::LoadScaleFrom(), LoadScan(), cloudViewer::CCMiscTools::MakeMinAndMaxCubical(), qM3C2Normals::MakeNormalsHorizontal(), MakeSquare(), Vector3Tpl< Type >::maxCoeff(), ccMeasurementDevice::measurePointToPlaneDistance(), QVTKWidgetCustom::mouseMoveEvent(), ccClipBox::move3D(), ecvDisplayTools::MoveCamera(), ecvGlobalShiftManager::NeedShift(), cloudViewer::LocalModel::New(), Vector3Tpl< Type >::norm2(), Vector3Tpl< Type >::norm2d(), ccPlaneEditDlg::onDipDirChanged(), ccApplyTransformationDlg::onEulerValueChanged(), ccPlaneEditDlg::onItemPicked(), ecvMeasurementTool::onItemPicked(), MainWindow::onItemPicked(), ccPlaneEditDlg::onNormalChanged(), ecvDisplayTools::onPointPicking(), ccApplyTransformationDlg::onRotAngleValueChanged(), Vector3Tpl< Type >::operator Vector3Tpl< double >(), Tuple3Tpl< Type >::operator*(), Vector3Tpl< Type >::operator*(), cloudViewer::BoundingBoxTpl< T >::operator*=(), Tuple3Tpl< Type >::operator*=(), Vector3Tpl< Type >::operator*=(), cloudViewer::BoundingBoxTpl< T >::operator+(), Vector3Tpl< Type >::operator+(), Tuple3Tpl< Type >::operator+(), Vector3Tpl< Type >::operator+=(), Tuple3Tpl< Type >::operator+=(), ccGLMatrixTpl< T >::operator+=(), Tuple3Tpl< Type >::operator-(), Vector3Tpl< Type >::operator-(), Vector3Tpl< Type >::operator-=(), Tuple3Tpl< Type >::operator-=(), ccGLMatrixTpl< T >::operator-=(), Tuple3Tpl< Type >::operator/(), Vector3Tpl< Type >::operator/(), Tuple3Tpl< Type >::operator/=(), Vector3Tpl< Type >::operator/=(), Vector3Tpl< Type >::operator=(), ccTrace::optimizeSegment(), optRotY(), ccFastMarchingForNormsDirection::OrientNormals(), cc2DLabel::pointPicking(), ccGenericPointCloud::pointPicking(), ccOctree::pointPicking(), cloudViewer::KDTree::pointToCellDistances(), cloudViewer::KDTree::pointToCellSquareDistance(), PointToVector(), cloudViewer::FastMarching::pos2index(), masc::ContextBasedFeature::prepare(), CommandCrossSection::process(), CommandRoughness::process(), CommandMatchBBCenters::process(), CommandMatchBestFitPlane::process(), CommandCSF::process(), ccCommandLineInterface::processGlobalShiftCommand(), ccPointListPickingDlg::processPickedPoint(), Vector3Tpl< Type >::prod(), ecvGenericDisplayTools::Project(), ccGBLSensor::projectNormals(), ProjectOnCone(), ccQuadric::projectOnQuadric(), ccGBLSensor::projectPoint(), cloudViewer::ChamferDistanceTransform::propagateDistance(), Ray< T >::Ray(), cloudViewer::DgmOctree::rayCast(), ccBoundingBoxEditorDlg::reflectChanges(), cloudViewer::RegistrationTools::RegistrationProcedure(), ecvDisplayTools::RenderText(), cvDistanceTool::reset(), cvProtractorTool::reset(), rotY(), DxfProfilesExporter::SaveHorizontalProfiles(), LasSaver::saveNextPoint(), ccPlaneEditDlg::saveParamsAndAccept(), SaveScan(), STLFilter::saveToASCIIFile(), PcdFilter::saveToFile(), AsciiFilter::saveToFile(), DxfFilter::saveToFile(), ObjFilter::saveToFile(), OFFFilter::saveToFile(), VTKFilter::saveToFile(), SalomeHydroFilter::saveToFile(), HeightProfileFilter::saveToFile(), MAFilter::saveToFile(), MascaretFilter::saveToFile(), SimpleBinFilter::saveToFile(), LASFWFFilter::saveToFile(), LasIOFilter::saveToFile(), LASFilter::saveToFile(), DepthMapFileFilter::saveToFile(), DxfProfilesExporter::SaveVerticalProfiles(), ccPointCloud::scale(), cloudViewer::SaitoSquaredDistanceTransform::SDT_3D(), cloudViewer::ManualSegmentationTools::segmentMeshWithAABox(), ccOctreeFrustumIntersector::separatingAxisTest(), ccBoundingBoxEditorDlg::setBoxAxes(), ecvViewportParameters::setCameraCenter(), QVTKWidgetCustom::setCameraFocalPoint(), QVTKWidgetCustom::setCameraPosition(), QVTKWidgetCustom::setCameraViewUp(), ccGLMatrixTpl< T >::setColumn(), ccPointCloud::setCoordFromSF(), PclUtils::PCLVis::SetDataAxesGridProperties(), ecvViewportParameters::setFocalDistance(), LASOpenDlg::setInfos(), LasSaveDialog::setOptimalScale(), LasSaveDialog::setOriginalScale(), ecvDisplayTools::SetPerspectiveState(), ecvDisplayTools::SetPivotPoint(), ecvViewportParameters::setPivotPoint(), ccMeasurementRecorder::setPlane(), cloudViewer::PointCloudTpl< T >::setPoint(), SetPoylineMetaVector(), ecvShiftAndScaleCloudDlg::setShift(), ecvPrimitiveFactoryDlg::setSpherePositionFromClipboard(), ccGLMatrixTpl< T >::setTranslation(), ccGeomFeaturesDlg::setUpDirection(), cloudViewer::Grid3D< Type >::setValue(), ecvDisplayTools::SetView(), cloudViewer::geometry::Line3D::SlabAABBBase(), cloudViewer::TrueKdTree::split(), ecvDisplayTools::StartCPUBasedPointPicking(), ecvDisplayTools::StartOpenGLPicking(), ccGLMatrixTpl< T >::toAngleAxis(), QVTKWidgetCustom::toDisplayPoint(), Vector3Tpl< Type >::toDouble(), ToFbxMesh(), DistanceMapGenerationDlg::toggleOverlayGrid(), ccUnrollDlg::toPersistentSettings(), ecvGenericCameraTool::CameraInfo::toString(), toTranslatedVector(), QVTKWidgetCustom::toWorldPoint(), ccPointCloud::Translate(), ccGenericMesh::trianglePicking(), cloudViewer::Neighbourhood::triangulateFromQuadric(), cloudViewer::CCMiscTools::TriBoxOverlap(), cloudViewer::CCMiscTools::TriBoxOverlapd(), ccPointCloud::unroll(), ccClipBox::update(), ccColorScale::update(), GamepadInput::update(), ccApplyTransformationDlg::updateAll(), ccFitPlane::updateAttributes(), GrainsAsEllipsoids::updateBBoxOnlyOne(), ecvCameraParamEditDlg::updateCamera(), ecvDisplayTools::UpdateConstellationCenterAndZoom(), ccCameraSensor::updateData(), MinimumCutSegmentationDlg::updateForeGroundPoint(), ecvShiftAndScaleCloudDlg::updateGlobalSystem(), cloudViewer::KDTree::updateInsideBoundingBox(), ecvShiftAndScaleCloudDlg::updateLocalSystem(), GrainsAsEllipsoids::updateMeshAndLineSet(), ccLineation::updateMetadata(), ccThickness::updateMetadata(), ccNormalVectors::UpdateNormalOrientations(), ecvCameraParamEditDlg::updatePivotPoint(), ccPlaneEditDlg::updatePlane(), ecvAnimationParamDlg::updateRotationAxisPoint(), ecvCameraParamEditDlg::updateUi(), vertex_cb(), Vector3Tpl< Type >::vset(), and G3Point::G3PointAction::wolman().


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