struct NcvRect32s

Overview

#include <NCV.hpp>

struct NcvRect32s
{
    // fields

    Ncv32s height;
    Ncv32s width;
    Ncv32s x;
    Ncv32s y;

    // construction

    NcvRect32s();

    NcvRect32s(
        Ncv32s x_,
        Ncv32s y_,
        Ncv32s width_,
        Ncv32s height_
        );
};

Detailed Documentation

Fields

Ncv32s height

Rectangle height.

Ncv32s width

Rectangle width.

Ncv32s x

x-coordinate of upper left corner.

Ncv32s y

y-coordinate of upper left corner.