PEXXCToNPCTransform2D(3) — Subroutines
Name
PEXXCToNPCTransform2D
Synopsis
int PEXXCToNPCTransform2D(PEXNPCSubVolume ∗npc_sub_volume, PEXDeviceCoord2D ∗viewport, unsigned int window_height, PEXMatrix3x3 transform_return)
Arguments
npc_sub_volume
A pointer to an NPC subvolume, typically that of a renderer resource
viewportAn array of two device coordinate points defining a viewport, typically that of a renderer resource. The first point in the array is the lower-left corner of the viewport; the second point is the upper-right.
window_height
The height of the drawable
transform_return
The returned transformation
Returns
Zero if successful; otherwise, one of the following:
PEXBadViewport - (xmin >= xmax, or ymin >= ymax, or zmin > zmax)
PEXBadSubVolume - (xmin >= xmax, or ymin >= ymax, or zmin > zmax)
Description
This function computes the 2D transformation matrix to map a drawable point (XC) to NPC coordinates, using the specified NPC subvolume, DC viewport, and drawable height. The returned transformation matrix first transforms the x and y coordinates of drawable points to device coordinates (DC), then applies the 2D components of the viewport-to-subvolume transformation, producing 2D NPC points.
When specifying NPC and DC, the X, Y and Z limits must be as follows:
xmin < xmax , ymin < ymax , zmin <= zmax
Errors
None
See Also
PEXXCToNPCTransform