struct P1::ImageSdk::Point

Overview

A point on any 2D Cartesian coordinate system defined by its x and y axis values. More…

#include <P1ImageRect.hpp>

struct Point
{
    // fields

    int32_t x;
    int32_t y;

    // methods

    std::string ToString() const;
};

// direct descendants

struct Rect;

Detailed Documentation

A point on any 2D Cartesian coordinate system defined by its x and y axis values.

Fields

int32_t x

The horizontal distance from the origin of that coordinate system.

int32_t y

The vertical distance from the origin of that coordinate system.