1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
7 * This file defines the APIs for creating a 2 dimensional rectangle.
11 * The <code>PP_Rect</code> struct contains the size and location of a 2D
17 * This value represents the x and y coordinates of the upper-left corner of
22 /** This value represents the width and height of the rectangle. */
27 * The <code>PP_FloatRect</code> struct contains the size and location of a 2D
32 * This value represents the x and y coordinates of the upper-left corner of
37 /** This value represents the width and height of the rectangle. */
44 * @addtogroup Functions
49 * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y
50 * coordinates and width and height dimensions as int32_t values.
52 * @param[in] x An int32_t value representing a horizontal coordinate of a
53 * point, starting with 0 as the left-most coordinate.
54 * @param[in] y An int32_t value representing a vertical coordinate of a point,
55 * starting with 0 as the top-most coordinate.
56 * @param[in] w An int32_t value representing a width.
57 * @param[in] h An int32_t value representing a height.
59 * @return A <code>PP_Rect</code> structure.
61 PP_INLINE
struct PP_Rect PP_MakeRectFromXYWH
(int32_t x
, int32_t y
,
62 int32_t w
, int32_t h
) {
72 * PP_MakeFloatRectFromXYWH() creates a <code>PP_FloatRect</code> given x and y
73 * coordinates and width and height dimensions as float values.
75 * @param[in] x An float value representing a horizontal coordinate of a
76 * point, starting with 0 as the left-most coordinate.
77 * @param[in] y An float value representing a vertical coordinate of a point,
78 * starting with 0 as the top-most coordinate.
79 * @param[in] w An float value representing a width.
80 * @param[in] h An float value representing a height.
82 * @return A <code>PP_FloatRect</code> structure.
84 PP_INLINE
struct PP_FloatRect PP_MakeFloatRectFromXYWH
(float x
, float y
,
86 struct PP_FloatRect ret
;