Lines Matching refs:points
483 \brief Derive from bounding rect, start and end radials, for arc, chord, or pie, the center, start, and end points, and the bounding rectangle.
582 \brief Derive from an EMF arc, chord, or pie the center, start, and end points, and the bounding rectangle.
1597 \brief Set rect and rectl objects from Upper Left and Lower Right corner points.
1614 \brief Set rect and rectl objects from Upper Left and Lower Right corner points.
1680 \param count number of points in the polyline
1710 \param count number of points in the polyline
1795 1 Conformal map of points based on scale, axis rotation, and axis ratio,
2751 \param points pointer to the source U_POINT structures
2752 \param count number of members in points
2757 PU_POINT points_transform(PU_POINT points, int count, U_XFORM xform){
2763 x = (float) points[i].x;
2764 y = (float) points[i].y;
2774 \param points pointer to the source U_POINT16 structures
2775 \param count number of members in points
2778 Transformed src points {x0,y0} appear at {x0*xscale + x, y0*yscale + y}
2780 PU_POINT16 point16_transform(PU_POINT16 points, int count, U_XFORM xform){
2786 x = (float) points[i].x;
2787 y = (float) points[i].y;
2798 \param count number of members in points
2801 Transformed Trivertex points {x0,y0} appear at {x0*xscale + x, y0*yscale + y}
2821 \param points pointer to the source U_POINT16 structures
2822 \param count number of members in points
2825 PU_POINT point16_to_point(PU_POINT16 points, int count){
2830 newpts[i].x = points[i].x;
2831 newpts[i].y = points[i].y;
2839 \param points pointer to the source U_POINT structures
2840 \param count number of members in points
2844 PU_POINT16 point_to_point16(PU_POINT points, int count){
2849 newpts[i].x = U_MNMX(points[i].x, INT16_MIN, INT16_MAX);
2850 newpts[i].y = U_MNMX(points[i].y, INT16_MIN, INT16_MAX);
2865 CORE1(uint32_t iType, U_RECTL rclBounds, const uint32_t cptl, const U_POINTL *points){
2866 CORE2(uint32_t iType, U_RECTL rclBounds, const uint32_t nPolys, const uint32_t *aPolyCounts,const uint32_t cptl, const U_POINTL *points){
2870 CORE6(uint32_t iType, U_RECTL rclBounds, const uint32_t cpts, const U_POINT16 *points){ (16bit form of CORE1)
2874 CORE10(uint32_t iType, U_RECTL rclBounds, const uint32_t nPolys, const uint32_t *aPolyCounts,const uint32_t cpts, const U_POINT16 *points){ (16bit form of CORE2)
2884 char *U_EMR_CORE1_set(uint32_t iType, U_RECTL rclBounds, const uint32_t cptl, const U_POINTL *points){
2897 memcpy(((PU_EMRPOLYBEZIER) record)->aptl,points,cbPoints);
2903 char *U_EMR_CORE2_set(uint32_t iType, U_RECTL rclBounds, const uint32_t nPolys, const uint32_t *aPolyCounts,const uint32_t cptl, const U_POINTL *points){
2920 memcpy(record + off,points,cbPoints);
2970 char *U_EMR_CORE6_set(uint32_t iType, U_RECTL rclBounds, const uint32_t cpts, const U_POINT16 *points){
2985 memcpy(record + off, points, cbPoints);
3059 // Functions that take a rect and a pair of points, starting with U_EMRARC_set
3076 char *U_EMR_CORE10_set(uint32_t iType, U_RECTL rclBounds, const uint32_t nPolys, const uint32_t *aPolyCounts,const uint32_t cpts, const U_POINT16 *points){
3093 memcpy(record + off,points,cbPoints);
3295 \param cptl Number of points to draw
3296 \param points array of points
3301 const U_POINTL *points
3303 return(U_EMR_CORE1_set(U_EMR_POLYBEZIER, rclBounds, cptl, points));
3311 \param cptl Number of points to draw
3312 \param points array of points
3317 const U_POINTL *points
3319 return(U_EMR_CORE1_set(U_EMR_POLYGON, rclBounds, cptl, points));
3327 \param cptl Number of points to draw
3328 \param points array of points
3333 const U_POINTL *points
3335 return(U_EMR_CORE1_set(U_EMR_POLYLINE, rclBounds, cptl, points));
3343 \param cptl Number of points to draw
3344 \param points array of points
3349 const U_POINTL *points
3351 return(U_EMR_CORE1_set(U_EMR_POLYBEZIERTO, rclBounds, cptl, points));
3359 \param cptl Number of points to draw
3360 \param points array of points
3365 const U_POINTL *points
3367 return(U_EMR_CORE1_set(U_EMR_POLYLINETO, rclBounds, cptl, points));
3376 \param aPolyCounts Number of points in each poly (sequential)
3377 \param cptl Total number of points (over all poly)
3378 \param points array of points
3385 const U_POINTL *points
3387 return(U_EMR_CORE2_set(U_EMR_POLYPOLYLINE, rclBounds, nPolys, aPolyCounts,cptl, points));
3396 \param aPolyCounts Number of points in each poly (sequential)
3397 \param cptl Total number of points (over all poly)
3398 \param points array of points
3405 const U_POINTL *points
3407 return(U_EMR_CORE2_set(U_EMR_POLYPOLYGON, rclBounds, nPolys, aPolyCounts,cptl, points));
4753 \param aptlDst Defines parallelogram, UL, UR, LL corners, LR is derived (3 points)
4996 \param points Array of POINT16
5001 const U_POINT16 *points
5003 return(U_EMR_CORE6_set(U_EMR_POLYBEZIER16, rclBounds, cpts, points));
5012 \param points Array of POINT16
5017 const U_POINT16 *points
5019 return(U_EMR_CORE6_set(U_EMR_POLYGON16, rclBounds, cpts, points));
5028 \param points Array of POINT16
5033 const U_POINT16 *points
5035 return(U_EMR_CORE6_set(U_EMR_POLYLINE16, rclBounds, cpts, points));
5044 \param points Array of POINT16
5049 const U_POINT16 *points
5051 return(U_EMR_CORE6_set(U_EMR_POLYBEZIERTO16, rclBounds, cpts, points));
5060 \param points Array of POINT16
5065 const U_POINT16 *points
5067 return(U_EMR_CORE6_set(U_EMR_POLYLINETO16, rclBounds, cpts, points));
5076 \param aPolyCounts Number of points in each poly (sequential)
5078 \param points Array of POINT16
5085 const U_POINT16 *points
5087 return(U_EMR_CORE10_set(U_EMR_POLYPOLYLINE16, rclBounds, nPolys, aPolyCounts,cpts, points));
5096 \param aPolyCounts Number of points in each poly (sequential)
5098 \param points Array of POINT16
5105 const U_POINT16 *points
5107 return(U_EMR_CORE10_set(U_EMR_POLYPOLYGON16, rclBounds, nPolys, aPolyCounts,cpts, points));