1 /* CPML - Cairo Path Manipulation Library
2 * Copyright (C) 2008, 2009 Nicola Fontana <ntd at entidi.it>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
23 * @short_description: A structure holding a couple of values
25 * The CpmlPair is a generic 2D structure. It can be used to represent
26 * coordinates, sizes, offsets or whatever have two components.
28 * The name comes from MetaFont.
33 * @x: the x component of the pair
34 * @y: the y component of the pair
36 * A generic 2D structure.
41 * @x: the x component of the vector
42 * @y: the y component of the vector
44 * Another name for #CpmlPair. It is used to clarify when a function expects
47 * A vector represents a line starting from the origin (0,0) and ending
48 * to the given coordinates pair. Vectors are useful to define directions
52 #include "cpml-pair.h"
53 #include "cpml-macros.h"
60 static CpmlPair fallback_pair
= { 0, 0 };
65 * @pair: the destination #CpmlPair
66 * @src: the source #CpmlPair
68 * Copies @src in @pair.
73 cpml_pair_copy(CpmlPair
*pair
, const CpmlPair
*src
)
75 return memcpy(pair
, src
, sizeof(CpmlPair
));
79 * cpml_pair_from_cairo:
80 * @pair: the destination #CpmlPair
81 * @path_data: the original path data point
83 * Gets @pair from a #cairo_path_data_t struct. @path_data should contains
84 * a point data: it is up to the caller to be sure @path_data is valid.
89 cpml_pair_from_cairo(CpmlPair
*pair
, const cairo_path_data_t
*path_data
)
91 pair
->x
= path_data
->point
.x
;
92 pair
->y
= path_data
->point
.y
;
101 * Negates the coordinates of @pair.
104 cpml_pair_negate(CpmlPair
*pair
)
114 * Inverts (1/x) the coordinates of @pair. If @pair cannot be inverted
115 * because one coordinate is 0, 0 is returned and no transformation is
118 * Return value: 1 on success, 0 on errors
121 cpml_pair_invert(CpmlPair
*pair
)
123 if (pair
->x
== 0 || pair
->y
== 0)
126 pair
->x
= 1. / pair
->x
;
127 pair
->y
= 1. / pair
->y
;
133 * @pair: the destination #CpmlPair
134 * @src: the source pair to add
136 * Adds @src to @pair and stores the result in @pair. In other words,
137 * @pair = @pair + @src.
140 cpml_pair_add(CpmlPair
*pair
, const CpmlPair
*src
)
148 * @pair: the destination #CpmlPair
149 * @src: the source pair to subtract
151 * Subtracts @src from @pair and stores the result in @pair. In other words,
152 * @pair = @pair - @src.
155 cpml_pair_sub(CpmlPair
*pair
, const CpmlPair
*src
)
163 * @pair: the destination #CpmlPair
164 * @src: the source pair factor
166 * Multiplies the x coordinate of @pair by the @src x factor and the
167 * y coordinate by the @src y factor.
170 cpml_pair_mul(CpmlPair
*pair
, const CpmlPair
*src
)
178 * @pair: the destination #CpmlPair
179 * @src: the source pair divisor
181 * Divides the x coordinate of @pair by the @src x divisor and the
182 * y coordinate by the @src y divisor. If @pair cannot be divided
183 * because of a division by 0, 0 is returned and no transformation
186 * Return value: 1 on success, 0 on errors
189 cpml_pair_div(CpmlPair
*pair
, const CpmlPair
*src
)
191 if (src
->x
== 0 || src
->y
== 0)
200 * cpml_pair_transform:
201 * @pair: the destination #CpmlPair struct
202 * @matrix: the transformation matrix
204 * Shortcut to apply a specific transformation matrix to @pair.
207 cpml_pair_transform(CpmlPair
*pair
, const cairo_matrix_t
*matrix
)
209 cairo_matrix_transform_point(matrix
, &pair
->x
, &pair
->y
);
214 * cpml_pair_squared_distance:
215 * @from: the first #CpmlPair struct
216 * @to: the second #CpmlPair struct
218 * Gets the squared distance between @from and @to. This value is useful
219 * for comparation purpose: if you need to get the real distance, use
220 * cpml_pair_distance().
222 * @from or @to could be %NULL, in which case the fallback (0, 0) pair
225 * Return value: the squared distance
228 cpml_pair_squared_distance(const CpmlPair
*from
, const CpmlPair
*to
)
233 from
= &fallback_pair
;
240 return x
* x
+ y
* y
;
244 * cpml_pair_distance:
245 * @from: the first #CpmlPair struct
246 * @to: the second #CpmlPair struct
247 * @distance: where to store the result
249 * Gets the distance between @from and @to, storing the result in @distance.
250 * If you need this value only for comparation purpose, you could use
251 * cpm_pair_squared_distance() instead.
253 * @from or @to could be %NULL, in which case the fallback (0, 0) pair
256 * The algorithm used is adapted from:
257 * "Replacing Square Roots by Pythagorean Sums"
258 * by Clave Moler and Donald Morrison (1983)
259 * IBM Journal of Research and Development 27 (6): 577–581
260 * http://www.research.ibm.com/journal/rd/276/ibmrd2706P.pdf
262 * Return value: the distance
265 cpml_pair_distance(const CpmlPair
*from
, const CpmlPair
*to
)
271 from
= &fallback_pair
;
308 * cpml_vector_from_angle:
309 * @vector: the destination #CpmlVector
310 * @angle: angle of direction, in radians
311 * @length: the length of the vector
313 * Calculates the coordinates of the point far @length from the origin
314 * in the @angle direction. The result is stored in @vector.
316 * Return value: @vector
319 cpml_vector_from_angle(CpmlVector
*vector
, double angle
, double length
)
321 static double cached_angle
= 0;
322 static CpmlPair cached_vector
= { 1, 0 };
324 /* Check for cached result */
325 if (angle
== cached_angle
)
326 return cpml_pair_copy(vector
, &cached_vector
);
328 /* Check for common conditions */
329 if (angle
== M_PI_2
* 3.) {
334 if (angle
== M_PI_2
) {
350 /* Computation and cache registration */
351 vector
->x
= cos(angle
);
352 vector
->y
= -sin(angle
);
353 cached_angle
= angle
;
354 cpml_pair_copy(&cached_vector
, vector
);
360 * cpml_vector_set_length:
361 * @vector: a #CpmlVector
362 * @length: the new length
364 * Imposes the specified @length to @vector. If the old length is 0
365 * (and so the direction is not known), nothing happens.
368 cpml_vector_set_length(CpmlVector
*vector
, double length
)
370 double divisor
= cpml_pair_distance(NULL
, vector
);
372 /* Check for valid length (anything other than 0) */
377 vector
->x
/= divisor
;
378 vector
->y
/= divisor
;
383 * @vector: the source #CpmlVector
385 * Gets the angle of @vector, in radians. If @vector is (0, 0),
388 * Return value: the angle in radians
391 cpml_vector_angle(const CpmlVector
*vector
)
393 static CpmlPair cached_vector
= { 1., 0. };
394 static double cached_angle
= 0.;
396 /* Check for cached result */
397 if (vector
->x
== cached_vector
.x
&& vector
->y
== cached_vector
.y
)
400 /* Check for common conditions */
402 return vector
->x
>= 0 ? 0. : M_PI
;
404 return vector
->y
> 0 ? M_PI_2
: M_PI_2
* 3.;
405 if (vector
->x
== vector
->y
)
406 return vector
->x
> 0 ? M_PI_4
* 7 : M_PI_4
* 3;
407 if (vector
->x
== -vector
->y
)
408 return vector
->x
> 0 ? M_PI_4
: M_PI_4
* 5;
410 /* Computation and cache registration */
411 cached_angle
= atan(-vector
->y
/ vector
->x
);
412 cpml_pair_copy(&cached_vector
, vector
);
418 * cpml_vector_normal:
419 * @vector: the subject #CpmlVector
421 * Stores in @vector a vector normal to the original @vector.
422 * The length is retained.
424 * The algorithm is really quick because no trigonometry is involved.
427 cpml_vector_normal(CpmlVector
*vector
)
429 double tmp
= vector
->x
;
431 vector
->x
= -vector
->y
;
436 * cpml_pair_to_cairo:
437 * @pair: the destination #CpmlPair
438 * @path_data: the original path data point
440 * Sets a #cairo_path_data_t struct to @pair. This is exactly the reverse
441 * operation of cpml_pair_from_cairo().
444 cpml_pair_to_cairo(const CpmlPair
*pair
, cairo_path_data_t
*path_data
)
446 path_data
->point
.x
= pair
->x
;
447 path_data
->point
.y
= pair
->y
;