ObjFW  Diff

Differences From Artifact [93706299d5]:

To Artifact [59c945a116]:


66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
	size_t length;
} of_range_t;

/**
 * \brief A point.
 */
typedef struct of_point_t {
	int x;
	int y;
} of_point_t;

/**
 * \brief A dimension.
 */
typedef struct of_dimension_t {
	int width;
	int height;
} of_dimension_t;

/**
 * \brief A rectangle.
 */
typedef struct of_rectangle_t
{







|
|






|
|







66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
	size_t length;
} of_range_t;

/**
 * \brief A point.
 */
typedef struct of_point_t {
	float x;
	float y;
} of_point_t;

/**
 * \brief A dimension.
 */
typedef struct of_dimension_t {
	float width;
	float height;
} of_dimension_t;

/**
 * \brief A rectangle.
 */
typedef struct of_rectangle_t
{