struct CCL::PointF4D

4D Point with float coordinates.

#include <point3d.h>

struct PointF4D
{
    // fields

    CoordF x;
    CoordF y;
    CoordF z;
    CoordF w;

    // construction

    PointF4D (CoordF x = 0, CoordF y = 0, CoordF z = 0, CoordF w = 0);
    PointF4D (PointF3DRef rhs, CoordF w = 1);
};