2004-08-02 13:13:28 +00:00
|
|
|
|
/* cairo - a vector graphics library with display and print output
|
|
|
|
|
|
*
|
2003-10-23 07:47:29 +00:00
|
|
|
|
* Copyright <EFBFBD> 2003 University of Southern California
|
2003-09-05 15:29:49 +00:00
|
|
|
|
*
|
2004-08-02 13:13:28 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2004-08-02 17:04:00 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
|
* License version 2.1 as published by the Free Software Foundation.
|
2004-08-02 13:13:28 +00:00
|
|
|
|
*
|
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2004-08-02 17:04:00 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
2003-09-05 15:29:49 +00:00
|
|
|
|
*
|
2004-08-02 17:04:00 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2004-08-02 13:13:28 +00:00
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2004-08-02 17:04:00 +00:00
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2003-09-05 15:29:49 +00:00
|
|
|
|
* Author: Carl D. Worth <cworth@isi.edu>
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "cairoint.h"
|
|
|
|
|
|
|
|
|
|
|
|
cairo_fixed_t
|
|
|
|
|
|
_cairo_fixed_from_int (int i)
|
|
|
|
|
|
{
|
|
|
|
|
|
return i << 16;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cairo_fixed_t
|
|
|
|
|
|
_cairo_fixed_from_double (double d)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (cairo_fixed_t) (d * 65536);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2004-02-12 19:02:33 +00:00
|
|
|
|
cairo_fixed_t
|
|
|
|
|
|
_cairo_fixed_from_26_6 (uint32_t i)
|
|
|
|
|
|
{
|
|
|
|
|
|
return i << 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2003-09-05 15:29:49 +00:00
|
|
|
|
double
|
|
|
|
|
|
_cairo_fixed_to_double (cairo_fixed_t f)
|
|
|
|
|
|
{
|
|
|
|
|
|
return ((double) f) / 65536.0;
|
|
|
|
|
|
}
|
2004-02-12 19:02:33 +00:00
|
|
|
|
|
2004-05-20 16:42:56 +00:00
|
|
|
|
int
|
|
|
|
|
|
_cairo_fixed_is_integer (cairo_fixed_t f)
|
|
|
|
|
|
{
|
|
|
|
|
|
return (f & 0xFFFF) == 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
_cairo_fixed_integer_part (cairo_fixed_t f)
|
|
|
|
|
|
{
|
|
|
|
|
|
return f >> 16;
|
|
|
|
|
|
}
|