struct P1::ImageSdk::Size

Overview

A size on any Cartesian coordinate system defined by its width and height. More…

#include <P1ImageRect.hpp>

struct Size
{
    // fields

    int32_t width;
    int32_t height;

    // methods

    std::string ToString() const;
};

// direct descendants

struct Rect;

Detailed Documentation

A size on any Cartesian coordinate system defined by its width and height.

Fields

int32_t width

The horizontal length.

int32_t height

The vertical length.