Home
last modified time | relevance | path

Searched refs:axesPtr (Results 1 – 2 of 2) sorted by relevance

/dports/x11-toolkits/blt/blt2.5/generic/
H A DbltGrAxis.c1091 Blt_Map2D(graphPtr, x, y, axesPtr) in Blt_Map2D() argument
1094 Axis2D *axesPtr; /* Specifies which axes to use */
1099 point.x = Blt_HMap(graphPtr, axesPtr->y, y);
1100 point.y = Blt_VMap(graphPtr, axesPtr->x, x);
1102 point.x = Blt_HMap(graphPtr, axesPtr->x, x);
1103 point.y = Blt_VMap(graphPtr, axesPtr->y, y);
1122 Blt_InvMap2D(graphPtr, x, y, axesPtr) in Blt_InvMap2D() argument
1130 point.x = Blt_InvVMap(graphPtr, axesPtr->x, y);
1131 point.y = Blt_InvHMap(graphPtr, axesPtr->y, x);
1133 point.x = Blt_InvHMap(graphPtr, axesPtr->x, x);
[all …]
H A DbltGrMarker.c1463 MapPoint(graphPtr, pointPtr, axesPtr) in MapPoint() argument
1466 Axis2D *axesPtr; /* Specifies which axes to use */
1471 result.x = HMap(graphPtr, axesPtr->y, pointPtr->y);
1472 result.y = VMap(graphPtr, axesPtr->x, pointPtr->x);
1474 result.x = HMap(graphPtr, axesPtr->x, pointPtr->x);
1475 result.y = VMap(graphPtr, axesPtr->y, pointPtr->y);