template struct mrpt::math::TPoint3D_data

#include <mrpt/math/TPoint3D.h>

template <typename T>
struct TPoint3D_data
{
    //
fields

    T y;
    T z;

    // construction

    TPoint3D_data();

    TPoint3D_data(
        T X,
        T Y,
        T Z
        );
};

// direct descendants

template <typename T>
struct TPoint3D_;