Home
last modified time | relevance | path

Searched defs:PointXYZ (Results 1 – 7 of 7) sorted by relevance

/dports/astro/xplanet/xplanet-1.3.1/src/libprojection/
H A DProjectionIcosagnomonic.h26 class PointXYZ; variable
82 struct PointXYZ { struct
83 PointXYZ(double a, double b, double c) : x(a), y(b), z(c) {}; in PointXYZ() function
84 PointXYZ(const PointLL& p) in PointXYZ() argument
92 double x, y, z;
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/test/filters/
H A Dtest_functor_filter.cpp20 const auto copy_all = [](PointCloud<PointXYZ>, index_t) { return 0; }; in TEST()
23 const auto ref_all = [](PointCloud<PointXYZ>&, index_t&) { return 0; }; in TEST()
26 const auto ref_cloud = [](PointCloud<PointXYZ>&, index_t) { return 0; }; in TEST()
29 const auto const_ref_cloud = [](const PointCloud<PointXYZ>&, index_t) { return 0; }; in TEST()
32 const auto const_ref_all = [](const PointCloud<PointXYZ>&, const index_t&) { in TEST()
100 free_func(const PointCloud<PointXYZ>&, const index_t& idx) in free_func()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/test/common/
H A Dtest_operators.cpp46 TEST (PointOperators, PointXYZ) in TEST() argument
H A Dtest_generator.cpp44 TEST (UniformCloudGenerator, PointXYZ) in TEST() argument
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/io/src/
H A Dreal_sense_2_grabber.cpp229 …return convertRealsensePointsToPointCloud<pcl::PointXYZ> ( points, []( pcl::PointXYZ&, const rs2::… in convertDepthToPointXYZ()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/common/include/pcl/impl/
H A Dpoint_types.hpp346 struct EIGEN_ALIGN16 PointXYZ : public _PointXYZ struct
348 inline PointXYZ (const _PointXYZ &p): PointXYZ(p.x, p.y, p.z) {} in PointXYZ() argument
350 inline PointXYZ (): PointXYZ(0.f, 0.f, 0.f) {} in PointXYZ() function
352 inline PointXYZ (float _x, float _y, float _z) in PointXYZ() function
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/test/registration/
H A Dtest_registration_api.cpp65 using PointXYZ = pcl::PointXYZ; typedef