[Previous] [Contents] [Index] [Next]

PtTranslateRect()

Translate a rectangle (add offset)

Synopsis:

PhRect_t *PtTranslateRect( PhRect_t *rect, 
                           PhPoint_t const *delta );

Description:

This convenience function adds delta->x to rect->ul.x and rect->lr.x, and adds delta->y to rect->ul.y and rect->lr.y.

You'll find this function handy for translating events, extents, or canvases so that they become relative to various points.

Returns:

The pointer passed in rect.

Examples:

See PhInitDrag().

Classification:

Photon

Safety:
Interrupt handler No
Signal handler No
Thread No

See also:

PtDeTranslateRect()


[Previous] [Contents] [Index] [Next]