I have just started to work with the Point Cloud Library (PCL). I include it,
#include <pcl/point_cloud.h>
and define three points,
pcl::PointXY pA, pB, pC;
pA.x = 1;
pA.y = 2;
pB = pA;
Why isn't the +operator overloaded? If I try
pC = pA + pB;
I get a compilation error. It seems like such a basic operation, and so I took it for granted that all basic operations would be defined, or have I missed something?
I found a filed called "point_operators.h" in an older version of PCL (1.6). This file defines the basic operations I want. However, in my newer version (1.9), this file is empty. How come?
Thank you!