summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2015-09-04 14:09:50 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2015-09-04 14:54:07 +0200
commitef207ebbd8f1429bc3160a3ee8faeb04b12d6d30 (patch)
tree22bc97fc50c14c2d69bf7e2d0db31fee6e133146
parent56560329aefe08da71efeaab9cf820c31810e537 (diff)
downloadefl-ef207ebbd8f1429bc3160a3ee8faeb04b12d6d30.tar.gz
ector: software: convert dos to unix line endings
-rwxr-xr-xsrc/lib/ector/software/sw_ft_math.c1056
-rwxr-xr-xsrc/lib/ector/software/sw_ft_math.h876
-rwxr-xr-xsrc/lib/ector/software/sw_ft_stroker.c4584
-rwxr-xr-xsrc/lib/ector/software/sw_ft_types.h320
4 files changed, 3418 insertions, 3418 deletions
diff --git a/src/lib/ector/software/sw_ft_math.c b/src/lib/ector/software/sw_ft_math.c
index 9b3894ff8d..268c875c28 100755
--- a/src/lib/ector/software/sw_ft_math.c
+++ b/src/lib/ector/software/sw_ft_math.c
@@ -1,528 +1,528 @@
-/***************************************************************************/
-/* */
-/* fttrigon.c */
-/* */
-/* FreeType trigonometric functions (body). */
-/* */
-/* Copyright 2001-2005, 2012-2013 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
-
-#include <math.h>
-#include "sw_ft_math.h"
-
-
-#define SW_FT_MSB( x ) ( 31 - __builtin_clz( x ) )
-
-#define SW_FT_PAD_FLOOR( x, n ) ( (x) & ~((n)-1) )
-#define SW_FT_PAD_ROUND( x, n ) SW_FT_PAD_FLOOR( (x) + ((n)/2), n )
-#define SW_FT_PAD_CEIL( x, n ) SW_FT_PAD_FLOOR( (x) + ((n)-1), n )
-
-
-#define SW_FT_BEGIN_STMNT do {
-#define SW_FT_END_STMNT } while ( 0 )
-/* transfer sign leaving a positive number */
-#define SW_FT_MOVE_SIGN( x, s ) \
-SW_FT_BEGIN_STMNT \
- if ( x < 0 ) \
- { \
- x = -x; \
- s = -s; \
- } \
-SW_FT_END_STMNT
-
-
-
-
-SW_FT_Long
-SW_FT_MulFix( SW_FT_Long a,
- SW_FT_Long b )
-{
- SW_FT_Int s = 1;
- SW_FT_Long c;
-
-
- SW_FT_MOVE_SIGN( a, s );
- SW_FT_MOVE_SIGN( b, s );
-
- c = (SW_FT_Long)( ( (SW_FT_Int64)a * b + 0x8000L ) >> 16 );
-
- return ( s > 0 ) ? c : -c;
-}
-
-SW_FT_Long
-SW_FT_MulDiv( SW_FT_Long a,
- SW_FT_Long b,
- SW_FT_Long c )
-{
- SW_FT_Int s = 1;
- SW_FT_Long d;
-
-
- SW_FT_MOVE_SIGN( a, s );
- SW_FT_MOVE_SIGN( b, s );
- SW_FT_MOVE_SIGN( c, s );
-
- d = (SW_FT_Long)( c > 0 ? ( (SW_FT_Int64)a * b + ( c >> 1 ) ) / c
- : 0x7FFFFFFFL );
-
- return ( s > 0 ) ? d : -d;
-}
-
-SW_FT_Long
-SW_FT_DivFix( SW_FT_Long a,
- SW_FT_Long b )
-{
- SW_FT_Int s = 1;
- SW_FT_Long q;
-
-
- SW_FT_MOVE_SIGN( a, s );
- SW_FT_MOVE_SIGN( b, s );
-
- q = (SW_FT_Long)( b > 0 ? ( ( (SW_FT_UInt64)a << 16 ) + ( b >> 1 ) ) / b
- : 0x7FFFFFFFL );
-
- return ( s < 0 ? -q : q );
-}
-
-
-/*************************************************************************/
-/* */
-/* This is a fixed-point CORDIC implementation of trigonometric */
-/* functions as well as transformations between Cartesian and polar */
-/* coordinates. The angles are represented as 16.16 fixed-point values */
-/* in degrees, i.e., the angular resolution is 2^-16 degrees. Note that */
-/* only vectors longer than 2^16*180/pi (or at least 22 bits) on a */
-/* discrete Cartesian grid can have the same or better angular */
-/* resolution. Therefore, to maintain this precision, some functions */
-/* require an interim upscaling of the vectors, whereas others operate */
-/* with 24-bit long vectors directly. */
-/* */
-/*************************************************************************/
-
- /* the Cordic shrink factor 0.858785336480436 * 2^32 */
-#define SW_FT_TRIG_SCALE 0xDBD95B16UL
-
- /* the highest bit in overflow-safe vector components, */
- /* MSB of 0.858785336480436 * sqrt(0.5) * 2^30 */
-#define SW_FT_TRIG_SAFE_MSB 29
-
- /* this table was generated for SW_FT_PI = 180L << 16, i.e. degrees */
-#define SW_FT_TRIG_MAX_ITERS 23
-
- static const SW_FT_Fixed
- ft_trig_arctan_table[] =
- {
- 1740967L, 919879L, 466945L, 234379L, 117304L, 58666L, 29335L,
- 14668L, 7334L, 3667L, 1833L, 917L, 458L, 229L, 115L,
- 57L, 29L, 14L, 7L, 4L, 2L, 1L
- };
-
- /* multiply a given value by the CORDIC shrink factor */
- static SW_FT_Fixed
- ft_trig_downscale( SW_FT_Fixed val )
- {
- SW_FT_Fixed s;
- SW_FT_Int64 v;
-
-
- s = val;
- val = SW_FT_ABS( val );
-
- v = ( val * (SW_FT_Int64)SW_FT_TRIG_SCALE ) + 0x100000000UL;
- val = (SW_FT_Fixed)( v >> 32 );
-
- return ( s >= 0 ) ? val : -val;
- }
-
-
-
- /* undefined and never called for zero vector */
- static SW_FT_Int
- ft_trig_prenorm( SW_FT_Vector* vec )
- {
- SW_FT_Pos x, y;
- SW_FT_Int shift;
-
-
- x = vec->x;
- y = vec->y;
-
- shift = SW_FT_MSB( SW_FT_ABS( x ) | SW_FT_ABS( y ) );
-
- if ( shift <= SW_FT_TRIG_SAFE_MSB )
- {
- shift = SW_FT_TRIG_SAFE_MSB - shift;
- vec->x = (SW_FT_Pos)( (SW_FT_ULong)x << shift );
- vec->y = (SW_FT_Pos)( (SW_FT_ULong)y << shift );
- }
- else
- {
- shift -= SW_FT_TRIG_SAFE_MSB;
- vec->x = x >> shift;
- vec->y = y >> shift;
- shift = -shift;
- }
-
- return shift;
- }
-
-
- static void
- ft_trig_pseudo_rotate( SW_FT_Vector* vec,
- SW_FT_Angle theta )
- {
- SW_FT_Int i;
- SW_FT_Fixed x, y, xtemp, b;
- const SW_FT_Fixed *arctanptr;
-
-
- x = vec->x;
- y = vec->y;
-
- /* Rotate inside [-PI/4,PI/4] sector */
- while ( theta < -SW_FT_ANGLE_PI4 )
- {
- xtemp = y;
- y = -x;
- x = xtemp;
- theta += SW_FT_ANGLE_PI2;
- }
-
- while ( theta > SW_FT_ANGLE_PI4 )
- {
- xtemp = -y;
- y = x;
- x = xtemp;
- theta -= SW_FT_ANGLE_PI2;
- }
-
- arctanptr = ft_trig_arctan_table;
-
- /* Pseudorotations, with right shifts */
- for ( i = 1, b = 1; i < SW_FT_TRIG_MAX_ITERS; b <<= 1, i++ )
- {
- if ( theta < 0 )
- {
- xtemp = x + ( ( y + b ) >> i );
- y = y - ( ( x + b ) >> i );
- x = xtemp;
- theta += *arctanptr++;
- }
- else
- {
- xtemp = x - ( ( y + b ) >> i );
- y = y + ( ( x + b ) >> i );
- x = xtemp;
- theta -= *arctanptr++;
- }
- }
-
- vec->x = x;
- vec->y = y;
- }
-
-
- static void
- ft_trig_pseudo_polarize( SW_FT_Vector* vec )
- {
- SW_FT_Angle theta;
- SW_FT_Int i;
- SW_FT_Fixed x, y, xtemp, b;
- const SW_FT_Fixed *arctanptr;
-
-
- x = vec->x;
- y = vec->y;
-
- /* Get the vector into [-PI/4,PI/4] sector */
- if ( y > x )
- {
- if ( y > -x )
- {
- theta = SW_FT_ANGLE_PI2;
- xtemp = y;
- y = -x;
- x = xtemp;
- }
- else
- {
- theta = y > 0 ? SW_FT_ANGLE_PI : -SW_FT_ANGLE_PI;
- x = -x;
- y = -y;
- }
- }
- else
- {
- if ( y < -x )
- {
- theta = -SW_FT_ANGLE_PI2;
- xtemp = -y;
- y = x;
- x = xtemp;
- }
- else
- {
- theta = 0;
- }
- }
-
- arctanptr = ft_trig_arctan_table;
-
- /* Pseudorotations, with right shifts */
- for ( i = 1, b = 1; i < SW_FT_TRIG_MAX_ITERS; b <<= 1, i++ )
- {
- if ( y > 0 )
- {
- xtemp = x + ( ( y + b ) >> i );
- y = y - ( ( x + b ) >> i );
- x = xtemp;
- theta += *arctanptr++;
- }
- else
- {
- xtemp = x - ( ( y + b ) >> i );
- y = y + ( ( x + b ) >> i );
- x = xtemp;
- theta -= *arctanptr++;
- }
- }
-
- /* round theta */
- if ( theta >= 0 )
- theta = SW_FT_PAD_ROUND( theta, 32 );
- else
- theta = -SW_FT_PAD_ROUND( -theta, 32 );
-
- vec->x = x;
- vec->y = theta;
- }
-
-
- /* documentation is in fttrigon.h */
-
- SW_FT_Fixed
- SW_FT_Cos( SW_FT_Angle angle )
- {
- SW_FT_Vector v;
-
-
- v.x = SW_FT_TRIG_SCALE >> 8;
- v.y = 0;
- ft_trig_pseudo_rotate( &v, angle );
-
- return ( v.x + 0x80L ) >> 8;
- }
-
-
- /* documentation is in fttrigon.h */
-
- SW_FT_Fixed
- SW_FT_Sin( SW_FT_Angle angle )
- {
- return SW_FT_Cos( SW_FT_ANGLE_PI2 - angle );
- }
-
-
- /* documentation is in fttrigon.h */
-
- SW_FT_Fixed
- SW_FT_Tan( SW_FT_Angle angle )
- {
- SW_FT_Vector v;
-
-
- v.x = SW_FT_TRIG_SCALE >> 8;
- v.y = 0;
- ft_trig_pseudo_rotate( &v, angle );
-
- return SW_FT_DivFix( v.y, v.x );
- }
-
-
- /* documentation is in fttrigon.h */
-
- SW_FT_Angle
- SW_FT_Atan2( SW_FT_Fixed dx,
- SW_FT_Fixed dy )
- {
- SW_FT_Vector v;
-
-
- if ( dx == 0 && dy == 0 )
- return 0;
-
- v.x = dx;
- v.y = dy;
- ft_trig_prenorm( &v );
- ft_trig_pseudo_polarize( &v );
-
- return v.y;
- }
-
-
- /* documentation is in fttrigon.h */
-
- void
- SW_FT_Vector_Unit( SW_FT_Vector* vec,
- SW_FT_Angle angle )
- {
- vec->x = SW_FT_TRIG_SCALE >> 8;
- vec->y = 0;
- ft_trig_pseudo_rotate( vec, angle );
- vec->x = ( vec->x + 0x80L ) >> 8;
- vec->y = ( vec->y + 0x80L ) >> 8;
- }
-
-
- /* these macros return 0 for positive numbers,
- and -1 for negative ones */
-#define SW_FT_SIGN_LONG( x ) ( (x) >> ( SW_FT_SIZEOF_LONG * 8 - 1 ) )
-#define SW_FT_SIGN_INT( x ) ( (x) >> ( SW_FT_SIZEOF_INT * 8 - 1 ) )
-#define SW_FT_SIGN_INT32( x ) ( (x) >> 31 )
-#define SW_FT_SIGN_INT16( x ) ( (x) >> 15 )
-
-
- /* documentation is in fttrigon.h */
-
- void
- SW_FT_Vector_Rotate( SW_FT_Vector* vec,
- SW_FT_Angle angle )
- {
- SW_FT_Int shift;
- SW_FT_Vector v;
-
-
- v.x = vec->x;
- v.y = vec->y;
-
- if ( angle && ( v.x != 0 || v.y != 0 ) )
- {
- shift = ft_trig_prenorm( &v );
- ft_trig_pseudo_rotate( &v, angle );
- v.x = ft_trig_downscale( v.x );
- v.y = ft_trig_downscale( v.y );
-
- if ( shift > 0 )
- {
- SW_FT_Int32 half = (SW_FT_Int32)1L << ( shift - 1 );
-
-
- vec->x = ( v.x + half + SW_FT_SIGN_LONG( v.x ) ) >> shift;
- vec->y = ( v.y + half + SW_FT_SIGN_LONG( v.y ) ) >> shift;
- }
- else
- {
- shift = -shift;
- vec->x = (SW_FT_Pos)( (SW_FT_ULong)v.x << shift );
- vec->y = (SW_FT_Pos)( (SW_FT_ULong)v.y << shift );
- }
- }
- }
-
-
- /* documentation is in fttrigon.h */
-
- SW_FT_Fixed
- SW_FT_Vector_Length( SW_FT_Vector* vec )
- {
- SW_FT_Int shift;
- SW_FT_Vector v;
-
-
- v = *vec;
-
- /* handle trivial cases */
- if ( v.x == 0 )
- {
- return SW_FT_ABS( v.y );
- }
- else if ( v.y == 0 )
- {
- return SW_FT_ABS( v.x );
- }
-
- /* general case */
- shift = ft_trig_prenorm( &v );
- ft_trig_pseudo_polarize( &v );
-
- v.x = ft_trig_downscale( v.x );
-
- if ( shift > 0 )
- return ( v.x + ( 1 << ( shift - 1 ) ) ) >> shift;
-
- return (SW_FT_Fixed)( (SW_FT_UInt32)v.x << -shift );
- }
-
-
- /* documentation is in fttrigon.h */
-
- void
- SW_FT_Vector_Polarize( SW_FT_Vector* vec,
- SW_FT_Fixed *length,
- SW_FT_Angle *angle )
- {
- SW_FT_Int shift;
- SW_FT_Vector v;
-
-
- v = *vec;
-
- if ( v.x == 0 && v.y == 0 )
- return;
-
- shift = ft_trig_prenorm( &v );
- ft_trig_pseudo_polarize( &v );
-
- v.x = ft_trig_downscale( v.x );
-
- *length = ( shift >= 0 ) ? ( v.x >> shift )
- : (SW_FT_Fixed)( (SW_FT_UInt32)v.x << -shift );
- *angle = v.y;
- }
-
-
- /* documentation is in fttrigon.h */
-
- void
- SW_FT_Vector_From_Polar( SW_FT_Vector* vec,
- SW_FT_Fixed length,
- SW_FT_Angle angle )
- {
- vec->x = length;
- vec->y = 0;
-
- SW_FT_Vector_Rotate( vec, angle );
- }
-
-
- /* documentation is in fttrigon.h */
-
- SW_FT_Angle
- SW_FT_Angle_Diff( SW_FT_Angle angle1,
- SW_FT_Angle angle2 )
- {
- SW_FT_Angle delta = angle2 - angle1;
-
-
- delta %= SW_FT_ANGLE_2PI;
- if ( delta < 0 )
- delta += SW_FT_ANGLE_2PI;
-
- if ( delta > SW_FT_ANGLE_PI )
- delta -= SW_FT_ANGLE_2PI;
-
- return delta;
- }
-
-
-/* END */
-
+/***************************************************************************/
+/* */
+/* fttrigon.c */
+/* */
+/* FreeType trigonometric functions (body). */
+/* */
+/* Copyright 2001-2005, 2012-2013 by */
+/* David Turner, Robert Wilhelm, and Werner Lemberg. */
+/* */
+/* This file is part of the FreeType project, and may only be used, */
+/* modified, and distributed under the terms of the FreeType project */
+/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
+/* this file you indicate that you have read the license and */
+/* understand and accept it fully. */
+/* */
+/***************************************************************************/
+
+#include <math.h>
+#include "sw_ft_math.h"
+
+
+#define SW_FT_MSB( x ) ( 31 - __builtin_clz( x ) )
+
+#define SW_FT_PAD_FLOOR( x, n ) ( (x) & ~((n)-1) )
+#define SW_FT_PAD_ROUND( x, n ) SW_FT_PAD_FLOOR( (x) + ((n)/2), n )
+#define SW_FT_PAD_CEIL( x, n ) SW_FT_PAD_FLOOR( (x) + ((n)-1), n )
+
+
+#define SW_FT_BEGIN_STMNT do {
+#define SW_FT_END_STMNT } while ( 0 )
+/* transfer sign leaving a positive number */
+#define SW_FT_MOVE_SIGN( x, s ) \
+SW_FT_BEGIN_STMNT \
+ if ( x < 0 ) \
+ { \
+ x = -x; \
+ s = -s; \
+ } \
+SW_FT_END_STMNT
+
+
+
+
+SW_FT_Long
+SW_FT_MulFix( SW_FT_Long a,
+ SW_FT_Long b )
+{
+ SW_FT_Int s = 1;
+ SW_FT_Long c;
+
+
+ SW_FT_MOVE_SIGN( a, s );
+ SW_FT_MOVE_SIGN( b, s );
+
+ c = (SW_FT_Long)( ( (SW_FT_Int64)a * b + 0x8000L ) >> 16 );
+
+ return ( s > 0 ) ? c : -c;
+}
+
+SW_FT_Long
+SW_FT_MulDiv( SW_FT_Long a,
+ SW_FT_Long b,
+ SW_FT_Long c )
+{
+ SW_FT_Int s = 1;
+ SW_FT_Long d;
+
+
+ SW_FT_MOVE_SIGN( a, s );
+ SW_FT_MOVE_SIGN( b, s );
+ SW_FT_MOVE_SIGN( c, s );
+
+ d = (SW_FT_Long)( c > 0 ? ( (SW_FT_Int64)a * b + ( c >> 1 ) ) / c
+ : 0x7FFFFFFFL );
+
+ return ( s > 0 ) ? d : -d;
+}
+
+SW_FT_Long
+SW_FT_DivFix( SW_FT_Long a,
+ SW_FT_Long b )
+{
+ SW_FT_Int s = 1;
+ SW_FT_Long q;
+
+
+ SW_FT_MOVE_SIGN( a, s );
+ SW_FT_MOVE_SIGN( b, s );
+
+ q = (SW_FT_Long)( b > 0 ? ( ( (SW_FT_UInt64)a << 16 ) + ( b >> 1 ) ) / b
+ : 0x7FFFFFFFL );
+
+ return ( s < 0 ? -q : q );
+}
+
+
+/*************************************************************************/
+/* */
+/* This is a fixed-point CORDIC implementation of trigonometric */
+/* functions as well as transformations between Cartesian and polar */
+/* coordinates. The angles are represented as 16.16 fixed-point values */
+/* in degrees, i.e., the angular resolution is 2^-16 degrees. Note that */
+/* only vectors longer than 2^16*180/pi (or at least 22 bits) on a */
+/* discrete Cartesian grid can have the same or better angular */
+/* resolution. Therefore, to maintain this precision, some functions */
+/* require an interim upscaling of the vectors, whereas others operate */
+/* with 24-bit long vectors directly. */
+/* */
+/*************************************************************************/
+
+ /* the Cordic shrink factor 0.858785336480436 * 2^32 */
+#define SW_FT_TRIG_SCALE 0xDBD95B16UL
+
+ /* the highest bit in overflow-safe vector components, */
+ /* MSB of 0.858785336480436 * sqrt(0.5) * 2^30 */
+#define SW_FT_TRIG_SAFE_MSB 29
+
+ /* this table was generated for SW_FT_PI = 180L << 16, i.e. degrees */
+#define SW_FT_TRIG_MAX_ITERS 23
+
+ static const SW_FT_Fixed
+ ft_trig_arctan_table[] =
+ {
+ 1740967L, 919879L, 466945L, 234379L, 117304L, 58666L, 29335L,
+ 14668L, 7334L, 3667L, 1833L, 917L, 458L, 229L, 115L,
+ 57L, 29L, 14L, 7L, 4L, 2L, 1L
+ };
+
+ /* multiply a given value by the CORDIC shrink factor */
+ static SW_FT_Fixed
+ ft_trig_downscale( SW_FT_Fixed val )
+ {
+ SW_FT_Fixed s;
+ SW_FT_Int64 v;
+
+
+ s = val;
+ val = SW_FT_ABS( val );
+
+ v = ( val * (SW_FT_Int64)SW_FT_TRIG_SCALE ) + 0x100000000UL;
+ val = (SW_FT_Fixed)( v >> 32 );
+
+ return ( s >= 0 ) ? val : -val;
+ }
+
+
+
+ /* undefined and never called for zero vector */
+ static SW_FT_Int
+ ft_trig_prenorm( SW_FT_Vector* vec )
+ {
+ SW_FT_Pos x, y;
+ SW_FT_Int shift;
+
+
+ x = vec->x;
+ y = vec->y;
+
+ shift = SW_FT_MSB( SW_FT_ABS( x ) | SW_FT_ABS( y ) );
+
+ if ( shift <= SW_FT_TRIG_SAFE_MSB )
+ {
+ shift = SW_FT_TRIG_SAFE_MSB - shift;
+ vec->x = (SW_FT_Pos)( (SW_FT_ULong)x << shift );
+ vec->y = (SW_FT_Pos)( (SW_FT_ULong)y << shift );
+ }
+ else
+ {
+ shift -= SW_FT_TRIG_SAFE_MSB;
+ vec->x = x >> shift;
+ vec->y = y >> shift;
+ shift = -shift;
+ }
+
+ return shift;
+ }
+
+
+ static void
+ ft_trig_pseudo_rotate( SW_FT_Vector* vec,
+ SW_FT_Angle theta )
+ {
+ SW_FT_Int i;
+ SW_FT_Fixed x, y, xtemp, b;
+ const SW_FT_Fixed *arctanptr;
+
+
+ x = vec->x;
+ y = vec->y;
+
+ /* Rotate inside [-PI/4,PI/4] sector */
+ while ( theta < -SW_FT_ANGLE_PI4 )
+ {
+ xtemp = y;
+ y = -x;
+ x = xtemp;
+ theta += SW_FT_ANGLE_PI2;
+ }
+
+ while ( theta > SW_FT_ANGLE_PI4 )
+ {
+ xtemp = -y;
+ y = x;
+ x = xtemp;
+ theta -= SW_FT_ANGLE_PI2;
+ }
+
+ arctanptr = ft_trig_arctan_table;
+
+ /* Pseudorotations, with right shifts */
+ for ( i = 1, b = 1; i < SW_FT_TRIG_MAX_ITERS; b <<= 1, i++ )
+ {
+ if ( theta < 0 )
+ {
+ xtemp = x + ( ( y + b ) >> i );
+ y = y - ( ( x + b ) >> i );
+ x = xtemp;
+ theta += *arctanptr++;
+ }
+ else
+ {
+ xtemp = x - ( ( y + b ) >> i );
+ y = y + ( ( x + b ) >> i );
+ x = xtemp;
+ theta -= *arctanptr++;
+ }
+ }
+
+ vec->x = x;
+ vec->y = y;
+ }
+
+
+ static void
+ ft_trig_pseudo_polarize( SW_FT_Vector* vec )
+ {
+ SW_FT_Angle theta;
+ SW_FT_Int i;
+ SW_FT_Fixed x, y, xtemp, b;
+ const SW_FT_Fixed *arctanptr;
+
+
+ x = vec->x;
+ y = vec->y;
+
+ /* Get the vector into [-PI/4,PI/4] sector */
+ if ( y > x )
+ {
+ if ( y > -x )
+ {
+ theta = SW_FT_ANGLE_PI2;
+ xtemp = y;
+ y = -x;
+ x = xtemp;
+ }
+ else
+ {
+ theta = y > 0 ? SW_FT_ANGLE_PI : -SW_FT_ANGLE_PI;
+ x = -x;
+ y = -y;
+ }
+ }
+ else
+ {
+ if ( y < -x )
+ {
+ theta = -SW_FT_ANGLE_PI2;
+ xtemp = -y;
+ y = x;
+ x = xtemp;
+ }
+ else
+ {
+ theta = 0;
+ }
+ }
+
+ arctanptr = ft_trig_arctan_table;
+
+ /* Pseudorotations, with right shifts */
+ for ( i = 1, b = 1; i < SW_FT_TRIG_MAX_ITERS; b <<= 1, i++ )
+ {
+ if ( y > 0 )
+ {
+ xtemp = x + ( ( y + b ) >> i );
+ y = y - ( ( x + b ) >> i );
+ x = xtemp;
+ theta += *arctanptr++;
+ }
+ else
+ {
+ xtemp = x - ( ( y + b ) >> i );
+ y = y + ( ( x + b ) >> i );
+ x = xtemp;
+ theta -= *arctanptr++;
+ }
+ }
+
+ /* round theta */
+ if ( theta >= 0 )
+ theta = SW_FT_PAD_ROUND( theta, 32 );
+ else
+ theta = -SW_FT_PAD_ROUND( -theta, 32 );
+
+ vec->x = x;
+ vec->y = theta;
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ SW_FT_Fixed
+ SW_FT_Cos( SW_FT_Angle angle )
+ {
+ SW_FT_Vector v;
+
+
+ v.x = SW_FT_TRIG_SCALE >> 8;
+ v.y = 0;
+ ft_trig_pseudo_rotate( &v, angle );
+
+ return ( v.x + 0x80L ) >> 8;
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ SW_FT_Fixed
+ SW_FT_Sin( SW_FT_Angle angle )
+ {
+ return SW_FT_Cos( SW_FT_ANGLE_PI2 - angle );
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ SW_FT_Fixed
+ SW_FT_Tan( SW_FT_Angle angle )
+ {
+ SW_FT_Vector v;
+
+
+ v.x = SW_FT_TRIG_SCALE >> 8;
+ v.y = 0;
+ ft_trig_pseudo_rotate( &v, angle );
+
+ return SW_FT_DivFix( v.y, v.x );
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ SW_FT_Angle
+ SW_FT_Atan2( SW_FT_Fixed dx,
+ SW_FT_Fixed dy )
+ {
+ SW_FT_Vector v;
+
+
+ if ( dx == 0 && dy == 0 )
+ return 0;
+
+ v.x = dx;
+ v.y = dy;
+ ft_trig_prenorm( &v );
+ ft_trig_pseudo_polarize( &v );
+
+ return v.y;
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ void
+ SW_FT_Vector_Unit( SW_FT_Vector* vec,
+ SW_FT_Angle angle )
+ {
+ vec->x = SW_FT_TRIG_SCALE >> 8;
+ vec->y = 0;
+ ft_trig_pseudo_rotate( vec, angle );
+ vec->x = ( vec->x + 0x80L ) >> 8;
+ vec->y = ( vec->y + 0x80L ) >> 8;
+ }
+
+
+ /* these macros return 0 for positive numbers,
+ and -1 for negative ones */
+#define SW_FT_SIGN_LONG( x ) ( (x) >> ( SW_FT_SIZEOF_LONG * 8 - 1 ) )
+#define SW_FT_SIGN_INT( x ) ( (x) >> ( SW_FT_SIZEOF_INT * 8 - 1 ) )
+#define SW_FT_SIGN_INT32( x ) ( (x) >> 31 )
+#define SW_FT_SIGN_INT16( x ) ( (x) >> 15 )
+
+
+ /* documentation is in fttrigon.h */
+
+ void
+ SW_FT_Vector_Rotate( SW_FT_Vector* vec,
+ SW_FT_Angle angle )
+ {
+ SW_FT_Int shift;
+ SW_FT_Vector v;
+
+
+ v.x = vec->x;
+ v.y = vec->y;
+
+ if ( angle && ( v.x != 0 || v.y != 0 ) )
+ {
+ shift = ft_trig_prenorm( &v );
+ ft_trig_pseudo_rotate( &v, angle );
+ v.x = ft_trig_downscale( v.x );
+ v.y = ft_trig_downscale( v.y );
+
+ if ( shift > 0 )
+ {
+ SW_FT_Int32 half = (SW_FT_Int32)1L << ( shift - 1 );
+
+
+ vec->x = ( v.x + half + SW_FT_SIGN_LONG( v.x ) ) >> shift;
+ vec->y = ( v.y + half + SW_FT_SIGN_LONG( v.y ) ) >> shift;
+ }
+ else
+ {
+ shift = -shift;
+ vec->x = (SW_FT_Pos)( (SW_FT_ULong)v.x << shift );
+ vec->y = (SW_FT_Pos)( (SW_FT_ULong)v.y << shift );
+ }
+ }
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ SW_FT_Fixed
+ SW_FT_Vector_Length( SW_FT_Vector* vec )
+ {
+ SW_FT_Int shift;
+ SW_FT_Vector v;
+
+
+ v = *vec;
+
+ /* handle trivial cases */
+ if ( v.x == 0 )
+ {
+ return SW_FT_ABS( v.y );
+ }
+ else if ( v.y == 0 )
+ {
+ return SW_FT_ABS( v.x );
+ }
+
+ /* general case */
+ shift = ft_trig_prenorm( &v );
+ ft_trig_pseudo_polarize( &v );
+
+ v.x = ft_trig_downscale( v.x );
+
+ if ( shift > 0 )
+ return ( v.x + ( 1 << ( shift - 1 ) ) ) >> shift;
+
+ return (SW_FT_Fixed)( (SW_FT_UInt32)v.x << -shift );
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ void
+ SW_FT_Vector_Polarize( SW_FT_Vector* vec,
+ SW_FT_Fixed *length,
+ SW_FT_Angle *angle )
+ {
+ SW_FT_Int shift;
+ SW_FT_Vector v;
+
+
+ v = *vec;
+
+ if ( v.x == 0 && v.y == 0 )
+ return;
+
+ shift = ft_trig_prenorm( &v );
+ ft_trig_pseudo_polarize( &v );
+
+ v.x = ft_trig_downscale( v.x );
+
+ *length = ( shift >= 0 ) ? ( v.x >> shift )
+ : (SW_FT_Fixed)( (SW_FT_UInt32)v.x << -shift );
+ *angle = v.y;
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ void
+ SW_FT_Vector_From_Polar( SW_FT_Vector* vec,
+ SW_FT_Fixed length,
+ SW_FT_Angle angle )
+ {
+ vec->x = length;
+ vec->y = 0;
+
+ SW_FT_Vector_Rotate( vec, angle );
+ }
+
+
+ /* documentation is in fttrigon.h */
+
+ SW_FT_Angle
+ SW_FT_Angle_Diff( SW_FT_Angle angle1,
+ SW_FT_Angle angle2 )
+ {
+ SW_FT_Angle delta = angle2 - angle1;
+
+
+ delta %= SW_FT_ANGLE_2PI;
+ if ( delta < 0 )
+ delta += SW_FT_ANGLE_2PI;
+
+ if ( delta > SW_FT_ANGLE_PI )
+ delta -= SW_FT_ANGLE_2PI;
+
+ return delta;
+ }
+
+
+/* END */
+
diff --git a/src/lib/ector/software/sw_ft_math.h b/src/lib/ector/software/sw_ft_math.h
index b844834a3b..95a5c4257e 100755
--- a/src/lib/ector/software/sw_ft_math.h
+++ b/src/lib/ector/software/sw_ft_math.h
@@ -1,438 +1,438 @@
-#ifndef SW_FT_MATH_H
-#define SW_FT_MATH_H
-
-/***************************************************************************/
-/* */
-/* fttrigon.h */
-/* */
-/* FreeType trigonometric functions (specification). */
-/* */
-/* Copyright 2001, 2003, 2005, 2007, 2013 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
-
-#include "sw_ft_types.h"
-
-
-/*************************************************************************/
-/* */
-/* The min and max functions missing in C. As usual, be careful not to */
-/* write things like SW_FT_MIN( a++, b++ ) to avoid side effects. */
-/* */
-#define SW_FT_MIN( a, b ) ( (a) < (b) ? (a) : (b) )
-#define SW_FT_MAX( a, b ) ( (a) > (b) ? (a) : (b) )
-
-#define SW_FT_ABS( a ) ( (a) < 0 ? -(a) : (a) )
-
-/*
- * Approximate sqrt(x*x+y*y) using the `alpha max plus beta min'
- * algorithm. We use alpha = 1, beta = 3/8, giving us results with a
- * largest error less than 7% compared to the exact value.
- */
-#define SW_FT_HYPOT( x, y ) \
- ( x = SW_FT_ABS( x ), \
- y = SW_FT_ABS( y ), \
- x > y ? x + ( 3 * y >> 3 ) \
- : y + ( 3 * x >> 3 ) )
-
-/*************************************************************************/
-/* */
-/* <Function> */
-/* SW_FT_MulFix */
-/* */
-/* <Description> */
-/* A very simple function used to perform the computation */
-/* `(a*b)/0x10000' with maximum accuracy. Most of the time this is */
-/* used to multiply a given value by a 16.16 fixed-point factor. */
-/* */
-/* <Input> */
-/* a :: The first multiplier. */
-/* b :: The second multiplier. Use a 16.16 factor here whenever */
-/* possible (see note below). */
-/* */
-/* <Return> */
-/* The result of `(a*b)/0x10000'. */
-/* */
-/* <Note> */
-/* This function has been optimized for the case where the absolute */
-/* value of `a' is less than 2048, and `b' is a 16.16 scaling factor. */
-/* As this happens mainly when scaling from notional units to */
-/* fractional pixels in FreeType, it resulted in noticeable speed */
-/* improvements between versions 2.x and 1.x. */
-/* */
-/* As a conclusion, always try to place a 16.16 factor as the */
-/* _second_ argument of this function; this can make a great */
-/* difference. */
-/* */
-SW_FT_Long
-SW_FT_MulFix( SW_FT_Long a,
- SW_FT_Long b );
-
-/*************************************************************************/
-/* */
-/* <Function> */
-/* SW_FT_MulDiv */
-/* */
-/* <Description> */
-/* A very simple function used to perform the computation `(a*b)/c' */
-/* with maximum accuracy (it uses a 64-bit intermediate integer */
-/* whenever necessary). */
-/* */
-/* This function isn't necessarily as fast as some processor specific */
-/* operations, but is at least completely portable. */
-/* */
-/* <Input> */
-/* a :: The first multiplier. */
-/* b :: The second multiplier. */
-/* c :: The divisor. */
-/* */
-/* <Return> */
-/* The result of `(a*b)/c'. This function never traps when trying to */
-/* divide by zero; it simply returns `MaxInt' or `MinInt' depending */
-/* on the signs of `a' and `b'. */
-/* */
-SW_FT_Long
-SW_FT_MulDiv( SW_FT_Long a,
- SW_FT_Long b,
- SW_FT_Long c );
-
-/*************************************************************************/
-/* */
-/* <Function> */
-/* SW_FT_DivFix */
-/* */
-/* <Description> */
-/* A very simple function used to perform the computation */
-/* `(a*0x10000)/b' with maximum accuracy. Most of the time, this is */
-/* used to divide a given value by a 16.16 fixed-point factor. */
-/* */
-/* <Input> */
-/* a :: The numerator. */
-/* b :: The denominator. Use a 16.16 factor here. */
-/* */
-/* <Return> */
-/* The result of `(a*0x10000)/b'. */
-/* */
-SW_FT_Long
-SW_FT_DivFix( SW_FT_Long a,
- SW_FT_Long b );
-
-
-
- /*************************************************************************/
- /* */
- /* <Section> */
- /* computations */
- /* */
- /*************************************************************************/
-
-
- /*************************************************************************
- *
- * @type:
- * SW_FT_Angle
- *
- * @description:
- * This type is used to model angle values in FreeType. Note that the
- * angle is a 16.16 fixed-point value expressed in degrees.
- *
- */
- typedef SW_FT_Fixed SW_FT_Angle;
-
-
- /*************************************************************************
- *
- * @macro:
- * SW_FT_ANGLE_PI
- *
- * @description:
- * The angle pi expressed in @SW_FT_Angle units.
- *
- */
-#define SW_FT_ANGLE_PI ( 180L << 16 )
-
-
- /*************************************************************************
- *
- * @macro:
- * SW_FT_ANGLE_2PI
- *
- * @description:
- * The angle 2*pi expressed in @SW_FT_Angle units.
- *
- */
-#define SW_FT_ANGLE_2PI ( SW_FT_ANGLE_PI * 2 )
-
-
- /*************************************************************************
- *
- * @macro:
- * SW_FT_ANGLE_PI2
- *
- * @description:
- * The angle pi/2 expressed in @SW_FT_Angle units.
- *
- */
-#define SW_FT_ANGLE_PI2 ( SW_FT_ANGLE_PI / 2 )
-
-
- /*************************************************************************
- *
- * @macro:
- * SW_FT_ANGLE_PI4
- *
- * @description:
- * The angle pi/4 expressed in @SW_FT_Angle units.
- *
- */
-#define SW_FT_ANGLE_PI4 ( SW_FT_ANGLE_PI / 4 )
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Sin
- *
- * @description:
- * Return the sinus of a given angle in fixed-point format.
- *
- * @input:
- * angle ::
- * The input angle.
- *
- * @return:
- * The sinus value.
- *
- * @note:
- * If you need both the sinus and cosinus for a given angle, use the
- * function @SW_FT_Vector_Unit.
- *
- */
- SW_FT_Fixed
- SW_FT_Sin( SW_FT_Angle angle );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Cos
- *
- * @description:
- * Return the cosinus of a given angle in fixed-point format.
- *
- * @input:
- * angle ::
- * The input angle.
- *
- * @return:
- * The cosinus value.
- *
- * @note:
- * If you need both the sinus and cosinus for a given angle, use the
- * function @SW_FT_Vector_Unit.
- *
- */
- SW_FT_Fixed
- SW_FT_Cos( SW_FT_Angle angle );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Tan
- *
- * @description:
- * Return the tangent of a given angle in fixed-point format.
- *
- * @input:
- * angle ::
- * The input angle.
- *
- * @return:
- * The tangent value.
- *
- */
- SW_FT_Fixed
- SW_FT_Tan( SW_FT_Angle angle );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Atan2
- *
- * @description:
- * Return the arc-tangent corresponding to a given vector (x,y) in
- * the 2d plane.
- *
- * @input:
- * x ::
- * The horizontal vector coordinate.
- *
- * y ::
- * The vertical vector coordinate.
- *
- * @return:
- * The arc-tangent value (i.e. angle).
- *
- */
- SW_FT_Angle
- SW_FT_Atan2( SW_FT_Fixed x,
- SW_FT_Fixed y );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Angle_Diff
- *
- * @description:
- * Return the difference between two angles. The result is always
- * constrained to the ]-PI..PI] interval.
- *
- * @input:
- * angle1 ::
- * First angle.
- *
- * angle2 ::
- * Second angle.
- *
- * @return:
- * Constrained value of `value2-value1'.
- *
- */
- SW_FT_Angle
- SW_FT_Angle_Diff( SW_FT_Angle angle1,
- SW_FT_Angle angle2 );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Vector_Unit
- *
- * @description:
- * Return the unit vector corresponding to a given angle. After the
- * call, the value of `vec.x' will be `sin(angle)', and the value of
- * `vec.y' will be `cos(angle)'.
- *
- * This function is useful to retrieve both the sinus and cosinus of a
- * given angle quickly.
- *
- * @output:
- * vec ::
- * The address of target vector.
- *
- * @input:
- * angle ::
- * The input angle.
- *
- */
- void
- SW_FT_Vector_Unit( SW_FT_Vector* vec,
- SW_FT_Angle angle );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Vector_Rotate
- *
- * @description:
- * Rotate a vector by a given angle.
- *
- * @inout:
- * vec ::
- * The address of target vector.
- *
- * @input:
- * angle ::
- * The input angle.
- *
- */
- void
- SW_FT_Vector_Rotate( SW_FT_Vector* vec,
- SW_FT_Angle angle );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Vector_Length
- *
- * @description:
- * Return the length of a given vector.
- *
- * @input:
- * vec ::
- * The address of target vector.
- *
- * @return:
- * The vector length, expressed in the same units that the original
- * vector coordinates.
- *
- */
- SW_FT_Fixed
- SW_FT_Vector_Length( SW_FT_Vector* vec );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Vector_Polarize
- *
- * @description:
- * Compute both the length and angle of a given vector.
- *
- * @input:
- * vec ::
- * The address of source vector.
- *
- * @output:
- * length ::
- * The vector length.
- *
- * angle ::
- * The vector angle.
- *
- */
- void
- SW_FT_Vector_Polarize( SW_FT_Vector* vec,
- SW_FT_Fixed *length,
- SW_FT_Angle *angle );
-
-
- /*************************************************************************
- *
- * @function:
- * SW_FT_Vector_From_Polar
- *
- * @description:
- * Compute vector coordinates from a length and angle.
- *
- * @output:
- * vec ::
- * The address of source vector.
- *
- * @input:
- * length ::
- * The vector length.
- *
- * angle ::
- * The vector angle.
- *
- */
- void
- SW_FT_Vector_From_Polar( SW_FT_Vector* vec,
- SW_FT_Fixed length,
- SW_FT_Angle angle );
-
-
-#endif // SW_FT_MATH_H
+#ifndef SW_FT_MATH_H
+#define SW_FT_MATH_H
+
+/***************************************************************************/
+/* */
+/* fttrigon.h */
+/* */
+/* FreeType trigonometric functions (specification). */
+/* */
+/* Copyright 2001, 2003, 2005, 2007, 2013 by */
+/* David Turner, Robert Wilhelm, and Werner Lemberg. */
+/* */
+/* This file is part of the FreeType project, and may only be used, */
+/* modified, and distributed under the terms of the FreeType project */
+/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
+/* this file you indicate that you have read the license and */
+/* understand and accept it fully. */
+/* */
+/***************************************************************************/
+
+#include "sw_ft_types.h"
+
+
+/*************************************************************************/
+/* */
+/* The min and max functions missing in C. As usual, be careful not to */
+/* write things like SW_FT_MIN( a++, b++ ) to avoid side effects. */
+/* */
+#define SW_FT_MIN( a, b ) ( (a) < (b) ? (a) : (b) )
+#define SW_FT_MAX( a, b ) ( (a) > (b) ? (a) : (b) )
+
+#define SW_FT_ABS( a ) ( (a) < 0 ? -(a) : (a) )
+
+/*
+ * Approximate sqrt(x*x+y*y) using the `alpha max plus beta min'
+ * algorithm. We use alpha = 1, beta = 3/8, giving us results with a
+ * largest error less than 7% compared to the exact value.
+ */
+#define SW_FT_HYPOT( x, y ) \
+ ( x = SW_FT_ABS( x ), \
+ y = SW_FT_ABS( y ), \
+ x > y ? x + ( 3 * y >> 3 ) \
+ : y + ( 3 * x >> 3 ) )
+
+/*************************************************************************/
+/* */
+/* <Function> */
+/* SW_FT_MulFix */
+/* */
+/* <Description> */
+/* A very simple function used to perform the computation */
+/* `(a*b)/0x10000' with maximum accuracy. Most of the time this is */
+/* used to multiply a given value by a 16.16 fixed-point factor. */
+/* */
+/* <Input> */
+/* a :: The first multiplier. */
+/* b :: The second multiplier. Use a 16.16 factor here whenever */
+/* possible (see note below). */
+/* */
+/* <Return> */
+/* The result of `(a*b)/0x10000'. */
+/* */
+/* <Note> */
+/* This function has been optimized for the case where the absolute */
+/* value of `a' is less than 2048, and `b' is a 16.16 scaling factor. */
+/* As this happens mainly when scaling from notional units to */
+/* fractional pixels in FreeType, it resulted in noticeable speed */
+/* improvements between versions 2.x and 1.x. */
+/* */
+/* As a conclusion, always try to place a 16.16 factor as the */
+/* _second_ argument of this function; this can make a great */
+/* difference. */
+/* */
+SW_FT_Long
+SW_FT_MulFix( SW_FT_Long a,
+ SW_FT_Long b );
+
+/*************************************************************************/
+/* */
+/* <Function> */
+/* SW_FT_MulDiv */
+/* */
+/* <Description> */
+/* A very simple function used to perform the computation `(a*b)/c' */
+/* with maximum accuracy (it uses a 64-bit intermediate integer */
+/* whenever necessary). */
+/* */
+/* This function isn't necessarily as fast as some processor specific */
+/* operations, but is at least completely portable. */
+/* */
+/* <Input> */
+/* a :: The first multiplier. */
+/* b :: The second multiplier. */
+/* c :: The divisor. */
+/* */
+/* <Return> */
+/* The result of `(a*b)/c'. This function never traps when trying to */
+/* divide by zero; it simply returns `MaxInt' or `MinInt' depending */
+/* on the signs of `a' and `b'. */
+/* */
+SW_FT_Long
+SW_FT_MulDiv( SW_FT_Long a,
+ SW_FT_Long b,
+ SW_FT_Long c );
+
+/*************************************************************************/
+/* */
+/* <Function> */
+/* SW_FT_DivFix */
+/* */
+/* <Description> */
+/* A very simple function used to perform the computation */
+/* `(a*0x10000)/b' with maximum accuracy. Most of the time, this is */
+/* used to divide a given value by a 16.16 fixed-point factor. */
+/* */
+/* <Input> */
+/* a :: The numerator. */
+/* b :: The denominator. Use a 16.16 factor here. */
+/* */
+/* <Return> */
+/* The result of `(a*0x10000)/b'. */
+/* */
+SW_FT_Long
+SW_FT_DivFix( SW_FT_Long a,
+ SW_FT_Long b );
+
+
+
+ /*************************************************************************/
+ /* */
+ /* <Section> */
+ /* computations */
+ /* */
+ /*************************************************************************/
+
+
+ /*************************************************************************
+ *
+ * @type:
+ * SW_FT_Angle
+ *
+ * @description:
+ * This type is used to model angle values in FreeType. Note that the
+ * angle is a 16.16 fixed-point value expressed in degrees.
+ *
+ */
+ typedef SW_FT_Fixed SW_FT_Angle;
+
+
+ /*************************************************************************
+ *
+ * @macro:
+ * SW_FT_ANGLE_PI
+ *
+ * @description:
+ * The angle pi expressed in @SW_FT_Angle units.
+ *
+ */
+#define SW_FT_ANGLE_PI ( 180L << 16 )
+
+
+ /*************************************************************************
+ *
+ * @macro:
+ * SW_FT_ANGLE_2PI
+ *
+ * @description:
+ * The angle 2*pi expressed in @SW_FT_Angle units.
+ *
+ */
+#define SW_FT_ANGLE_2PI ( SW_FT_ANGLE_PI * 2 )
+
+
+ /*************************************************************************
+ *
+ * @macro:
+ * SW_FT_ANGLE_PI2
+ *
+ * @description:
+ * The angle pi/2 expressed in @SW_FT_Angle units.
+ *
+ */
+#define SW_FT_ANGLE_PI2 ( SW_FT_ANGLE_PI / 2 )
+
+
+ /*************************************************************************
+ *
+ * @macro:
+ * SW_FT_ANGLE_PI4
+ *
+ * @description:
+ * The angle pi/4 expressed in @SW_FT_Angle units.
+ *
+ */
+#define SW_FT_ANGLE_PI4 ( SW_FT_ANGLE_PI / 4 )
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Sin
+ *
+ * @description:
+ * Return the sinus of a given angle in fixed-point format.
+ *
+ * @input:
+ * angle ::
+ * The input angle.
+ *
+ * @return:
+ * The sinus value.
+ *
+ * @note:
+ * If you need both the sinus and cosinus for a given angle, use the
+ * function @SW_FT_Vector_Unit.
+ *
+ */
+ SW_FT_Fixed
+ SW_FT_Sin( SW_FT_Angle angle );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Cos
+ *
+ * @description:
+ * Return the cosinus of a given angle in fixed-point format.
+ *
+ * @input:
+ * angle ::
+ * The input angle.
+ *
+ * @return:
+ * The cosinus value.
+ *
+ * @note:
+ * If you need both the sinus and cosinus for a given angle, use the
+ * function @SW_FT_Vector_Unit.
+ *
+ */
+ SW_FT_Fixed
+ SW_FT_Cos( SW_FT_Angle angle );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Tan
+ *
+ * @description:
+ * Return the tangent of a given angle in fixed-point format.
+ *
+ * @input:
+ * angle ::
+ * The input angle.
+ *
+ * @return:
+ * The tangent value.
+ *
+ */
+ SW_FT_Fixed
+ SW_FT_Tan( SW_FT_Angle angle );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Atan2
+ *
+ * @description:
+ * Return the arc-tangent corresponding to a given vector (x,y) in
+ * the 2d plane.
+ *
+ * @input:
+ * x ::
+ * The horizontal vector coordinate.
+ *
+ * y ::
+ * The vertical vector coordinate.
+ *
+ * @return:
+ * The arc-tangent value (i.e. angle).
+ *
+ */
+ SW_FT_Angle
+ SW_FT_Atan2( SW_FT_Fixed x,
+ SW_FT_Fixed y );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Angle_Diff
+ *
+ * @description:
+ * Return the difference between two angles. The result is always
+ * constrained to the ]-PI..PI] interval.
+ *
+ * @input:
+ * angle1 ::
+ * First angle.
+ *
+ * angle2 ::
+ * Second angle.
+ *
+ * @return:
+ * Constrained value of `value2-value1'.
+ *
+ */
+ SW_FT_Angle
+ SW_FT_Angle_Diff( SW_FT_Angle angle1,
+ SW_FT_Angle angle2 );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Vector_Unit
+ *
+ * @description:
+ * Return the unit vector corresponding to a given angle. After the
+ * call, the value of `vec.x' will be `sin(angle)', and the value of
+ * `vec.y' will be `cos(angle)'.
+ *
+ * This function is useful to retrieve both the sinus and cosinus of a
+ * given angle quickly.
+ *
+ * @output:
+ * vec ::
+ * The address of target vector.
+ *
+ * @input:
+ * angle ::
+ * The input angle.
+ *
+ */
+ void
+ SW_FT_Vector_Unit( SW_FT_Vector* vec,
+ SW_FT_Angle angle );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Vector_Rotate
+ *
+ * @description:
+ * Rotate a vector by a given angle.
+ *
+ * @inout:
+ * vec ::
+ * The address of target vector.
+ *
+ * @input:
+ * angle ::
+ * The input angle.
+ *
+ */
+ void
+ SW_FT_Vector_Rotate( SW_FT_Vector* vec,
+ SW_FT_Angle angle );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Vector_Length
+ *
+ * @description:
+ * Return the length of a given vector.
+ *
+ * @input:
+ * vec ::
+ * The address of target vector.
+ *
+ * @return:
+ * The vector length, expressed in the same units that the original
+ * vector coordinates.
+ *
+ */
+ SW_FT_Fixed
+ SW_FT_Vector_Length( SW_FT_Vector* vec );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Vector_Polarize
+ *
+ * @description:
+ * Compute both the length and angle of a given vector.
+ *
+ * @input:
+ * vec ::
+ * The address of source vector.
+ *
+ * @output:
+ * length ::
+ * The vector length.
+ *
+ * angle ::
+ * The vector angle.
+ *
+ */
+ void
+ SW_FT_Vector_Polarize( SW_FT_Vector* vec,
+ SW_FT_Fixed *length,
+ SW_FT_Angle *angle );
+
+
+ /*************************************************************************
+ *
+ * @function:
+ * SW_FT_Vector_From_Polar
+ *
+ * @description:
+ * Compute vector coordinates from a length and angle.
+ *
+ * @output:
+ * vec ::
+ * The address of source vector.
+ *
+ * @input:
+ * length ::
+ * The vector length.
+ *
+ * angle ::
+ * The vector angle.
+ *
+ */
+ void
+ SW_FT_Vector_From_Polar( SW_FT_Vector* vec,
+ SW_FT_Fixed length,
+ SW_FT_Angle angle );
+
+
+#endif // SW_FT_MATH_H
diff --git a/src/lib/ector/software/sw_ft_stroker.c b/src/lib/ector/software/sw_ft_stroker.c
index d1c31e8b10..4f638d2333 100755
--- a/src/lib/ector/software/sw_ft_stroker.c
+++ b/src/lib/ector/software/sw_ft_stroker.c
@@ -1,2292 +1,2292 @@
-
-/***************************************************************************/
-/* */
-/* ftstroke.c */
-/* */
-/* FreeType path stroker (body). */
-/* */
-/* Copyright 2002-2006, 2008-2011, 2013 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
-
-
-#include "sw_ft_math.h"
-#include "sw_ft_stroker.h"
-#include <assert.h>
-#include <string.h>
-#include <stdlib.h>
-
-
- /*************************************************************************/
- /*************************************************************************/
- /***** *****/
- /***** BEZIER COMPUTATIONS *****/
- /***** *****/
- /*************************************************************************/
- /*************************************************************************/
-
-#define SW_FT_SMALL_CONIC_THRESHOLD ( SW_FT_ANGLE_PI / 6 )
-#define SW_FT_SMALL_CUBIC_THRESHOLD ( SW_FT_ANGLE_PI / 8 )
-
-#define SW_FT_EPSILON 2
-
-#define SW_FT_IS_SMALL( x ) ( (x) > -SW_FT_EPSILON && (x) < SW_FT_EPSILON )
-
-
- static SW_FT_Pos
- ft_pos_abs( SW_FT_Pos x )
- {
- return x >= 0 ? x : -x;
- }
-
-
- static void
- ft_conic_split( SW_FT_Vector* base )
- {
- SW_FT_Pos a, b;
-
-
- base[4].x = base[2].x;
- b = base[1].x;
- a = base[3].x = ( base[2].x + b ) / 2;
- b = base[1].x = ( base[0].x + b ) / 2;
- base[2].x = ( a + b ) / 2;
-
- base[4].y = base[2].y;
- b = base[1].y;
- a = base[3].y = ( base[2].y + b ) / 2;
- b = base[1].y = ( base[0].y + b ) / 2;
- base[2].y = ( a + b ) / 2;
- }
-
-
- static SW_FT_Bool
- ft_conic_is_small_enough( SW_FT_Vector* base,
- SW_FT_Angle *angle_in,
- SW_FT_Angle *angle_out )
- {
- SW_FT_Vector d1, d2;
- SW_FT_Angle theta;
- SW_FT_Int close1, close2;
-
-
- d1.x = base[1].x - base[2].x;
- d1.y = base[1].y - base[2].y;
- d2.x = base[0].x - base[1].x;
- d2.y = base[0].y - base[1].y;
-
- close1 = SW_FT_IS_SMALL( d1.x ) && SW_FT_IS_SMALL( d1.y );
- close2 = SW_FT_IS_SMALL( d2.x ) && SW_FT_IS_SMALL( d2.y );
-
- if ( close1 )
- {
- if ( close2 )
- {
- /* basically a point; */
- /* do nothing to retain original direction */
- }
- else
- {
- *angle_in =
- *angle_out = SW_FT_Atan2( d2.x, d2.y );
- }
- }
- else /* !close1 */
- {
- if ( close2 )
- {
- *angle_in =
- *angle_out = SW_FT_Atan2( d1.x, d1.y );
- }
- else
- {
- *angle_in = SW_FT_Atan2( d1.x, d1.y );
- *angle_out = SW_FT_Atan2( d2.x, d2.y );
- }
- }
-
- theta = ft_pos_abs( SW_FT_Angle_Diff( *angle_in, *angle_out ) );
-
- return SW_FT_BOOL( theta < SW_FT_SMALL_CONIC_THRESHOLD );
- }
-
-
- static void
- ft_cubic_split( SW_FT_Vector* base )
- {
- SW_FT_Pos a, b, c, d;
-
-
- base[6].x = base[3].x;
- c = base[1].x;
- d = base[2].x;
- base[1].x = a = ( base[0].x + c ) / 2;
- base[5].x = b = ( base[3].x + d ) / 2;
- c = ( c + d ) / 2;
- base[2].x = a = ( a + c ) / 2;
- base[4].x = b = ( b + c ) / 2;
- base[3].x = ( a + b ) / 2;
-
- base[6].y = base[3].y;
- c = base[1].y;
- d = base[2].y;
- base[1].y = a = ( base[0].y + c ) / 2;
- base[5].y = b = ( base[3].y + d ) / 2;
- c = ( c + d ) / 2;
- base[2].y = a = ( a + c ) / 2;
- base[4].y = b = ( b + c ) / 2;
- base[3].y = ( a + b ) / 2;
- }
-
-
- /* Return the average of `angle1' and `angle2'. */
- /* This gives correct result even if `angle1' and `angle2' */
- /* have opposite signs. */
- static SW_FT_Angle
- ft_angle_mean( SW_FT_Angle angle1,
- SW_FT_Angle angle2 )
- {
- return angle1 + SW_FT_Angle_Diff( angle1, angle2 ) / 2;
- }
-
-
- static SW_FT_Bool
- ft_cubic_is_small_enough( SW_FT_Vector* base,
- SW_FT_Angle *angle_in,
- SW_FT_Angle *angle_mid,
- SW_FT_Angle *angle_out )
- {
- SW_FT_Vector d1, d2, d3;
- SW_FT_Angle theta1, theta2;
- SW_FT_Int close1, close2, close3;
-
-
- d1.x = base[2].x - base[3].x;
- d1.y = base[2].y - base[3].y;
- d2.x = base[1].x - base[2].x;
- d2.y = base[1].y - base[2].y;
- d3.x = base[0].x - base[1].x;
- d3.y = base[0].y - base[1].y;
-
- close1 = SW_FT_IS_SMALL( d1.x ) && SW_FT_IS_SMALL( d1.y );
- close2 = SW_FT_IS_SMALL( d2.x ) && SW_FT_IS_SMALL( d2.y );
- close3 = SW_FT_IS_SMALL( d3.x ) && SW_FT_IS_SMALL( d3.y );
-
- if ( close1 )
- {
- if ( close2 )
- {
- if ( close3 )
- {
- /* basically a point; */
- /* do nothing to retain original direction */
- }
- else /* !close3 */
- {
- *angle_in =
- *angle_mid =
- *angle_out = SW_FT_Atan2( d3.x, d3.y );
- }
- }
- else /* !close2 */
- {
- if ( close3 )
- {
- *angle_in =
- *angle_mid =
- *angle_out = SW_FT_Atan2( d2.x, d2.y );
- }
- else /* !close3 */
- {
- *angle_in =
- *angle_mid = SW_FT_Atan2( d2.x, d2.y );
- *angle_out = SW_FT_Atan2( d3.x, d3.y );
- }
- }
- }
- else /* !close1 */
- {
- if ( close2 )
- {
- if ( close3 )
- {
- *angle_in =
- *angle_mid =
- *angle_out = SW_FT_Atan2( d1.x, d1.y );
- }
- else /* !close3 */
- {
- *angle_in = SW_FT_Atan2( d1.x, d1.y );
- *angle_out = SW_FT_Atan2( d3.x, d3.y );
- *angle_mid = ft_angle_mean( *angle_in, *angle_out );
- }
- }
- else /* !close2 */
- {
- if ( close3 )
- {
- *angle_in = SW_FT_Atan2( d1.x, d1.y );
- *angle_mid =
- *angle_out = SW_FT_Atan2( d2.x, d2.y );
- }
- else /* !close3 */
- {
- *angle_in = SW_FT_Atan2( d1.x, d1.y );
- *angle_mid = SW_FT_Atan2( d2.x, d2.y );
- *angle_out = SW_FT_Atan2( d3.x, d3.y );
- }
- }
- }
-
- theta1 = ft_pos_abs( SW_FT_Angle_Diff( *angle_in, *angle_mid ) );
- theta2 = ft_pos_abs( SW_FT_Angle_Diff( *angle_mid, *angle_out ) );
-
- return SW_FT_BOOL( theta1 < SW_FT_SMALL_CUBIC_THRESHOLD &&
- theta2 < SW_FT_SMALL_CUBIC_THRESHOLD );
- }
-
-
- /*************************************************************************/
- /*************************************************************************/
- /***** *****/
- /***** STROKE BORDERS *****/
- /***** *****/
- /*************************************************************************/
- /*************************************************************************/
-
- typedef enum SW_FT_StrokeTags_
- {
- SW_FT_STROKE_TAG_ON = 1, /* on-curve point */
- SW_FT_STROKE_TAG_CUBIC = 2, /* cubic off-point */
- SW_FT_STROKE_TAG_BEGIN = 4, /* sub-path start */
- SW_FT_STROKE_TAG_END = 8 /* sub-path end */
-
- } SW_FT_StrokeTags;
-
-#define SW_FT_STROKE_TAG_BEGIN_END ( SW_FT_STROKE_TAG_BEGIN | SW_FT_STROKE_TAG_END )
-
- typedef struct SW_FT_StrokeBorderRec_
- {
- SW_FT_UInt num_points;
- SW_FT_UInt max_points;
- SW_FT_Vector* points;
- SW_FT_Byte* tags;
- SW_FT_Bool movable; /* TRUE for ends of lineto borders */
- SW_FT_Int start; /* index of current sub-path start point */
- SW_FT_Bool valid;
-
- } SW_FT_StrokeBorderRec, *SW_FT_StrokeBorder;
-
-
-
- SW_FT_Error
- SW_FT_Outline_Check( SW_FT_Outline* outline )
- {
- if ( outline )
- {
- SW_FT_Int n_points = outline->n_points;
- SW_FT_Int n_contours = outline->n_contours;
- SW_FT_Int end0, end;
- SW_FT_Int n;
-
-
- /* empty glyph? */
- if ( n_points == 0 && n_contours == 0 )
- return 0;
-
- /* check point and contour counts */
- if ( n_points <= 0 || n_contours <= 0 )
- goto Bad;
-
- end0 = end = -1;
- for ( n = 0; n < n_contours; n++ )
- {
- end = outline->contours[n];
-
- /* note that we don't accept empty contours */
- if ( end <= end0 || end >= n_points )
- goto Bad;
-
- end0 = end;
- }
-
- if ( end != n_points - 1 )
- goto Bad;
-
- /* XXX: check the tags array */
- return 0;
- }
-
- Bad:
- return -1;//SW_FT_THROW( Invalid_Argument );
- }
-
-
-
- void
- SW_FT_Outline_Get_CBox( const SW_FT_Outline* outline,
- SW_FT_BBox *acbox )
- {
- SW_FT_Pos xMin, yMin, xMax, yMax;
-
-
- if ( outline && acbox )
- {
- if ( outline->n_points == 0 )
- {
- xMin = 0;
- yMin = 0;
- xMax = 0;
- yMax = 0;
- }
- else
- {
- SW_FT_Vector* vec = outline->points;
- SW_FT_Vector* limit = vec + outline->n_points;
-
-
- xMin = xMax = vec->x;
- yMin = yMax = vec->y;
- vec++;
-
- for ( ; vec < limit; vec++ )
- {
- SW_FT_Pos x, y;
-
-
- x = vec->x;
- if ( x < xMin ) xMin = x;
- if ( x > xMax ) xMax = x;
-
- y = vec->y;
- if ( y < yMin ) yMin = y;
- if ( y > yMax ) yMax = y;
- }
- }
- acbox->xMin = xMin;
- acbox->xMax = xMax;
- acbox->yMin = yMin;
- acbox->yMax = yMax;
- }
- }
-
-
-
- static SW_FT_Error
- ft_stroke_border_grow( SW_FT_StrokeBorder border,
- SW_FT_UInt new_points )
- {
- SW_FT_UInt old_max = border->max_points;
- SW_FT_UInt new_max = border->num_points + new_points;
- SW_FT_Error error = 0;
-
-
- if ( new_max > old_max )
- {
- SW_FT_UInt cur_max = old_max;
-
-
- while ( cur_max < new_max )
- cur_max += ( cur_max >> 1 ) + 16;
-
- border->points = (SW_FT_Vector *) realloc(border->points, cur_max * sizeof(SW_FT_Vector));
- border->tags = (SW_FT_Byte *) realloc(border->tags, cur_max * sizeof(SW_FT_Byte));
-
- if ( !border->points || !border->tags)
- goto Exit;
-
- border->max_points = cur_max;
- }
-
- Exit:
- return error;
- }
-
-
- static void
- ft_stroke_border_close( SW_FT_StrokeBorder border,
- SW_FT_Bool reverse )
- {
- SW_FT_UInt start = border->start;
- SW_FT_UInt count = border->num_points;
-
-
- assert( border->start >= 0 );
-
- /* don't record empty paths! */
- if ( count <= start + 1U )
- border->num_points = start;
- else
- {
- /* copy the last point to the start of this sub-path, since */
- /* it contains the `adjusted' starting coordinates */
- border->num_points = --count;
- border->points[start] = border->points[count];
-
- if ( reverse )
- {
- /* reverse the points */
- {
- SW_FT_Vector* vec1 = border->points + start + 1;
- SW_FT_Vector* vec2 = border->points + count - 1;
-
-
- for ( ; vec1 < vec2; vec1++, vec2-- )
- {
- SW_FT_Vector tmp;
-
-
- tmp = *vec1;
- *vec1 = *vec2;
- *vec2 = tmp;
- }
- }
-
- /* then the tags */
- {
- SW_FT_Byte* tag1 = border->tags + start + 1;
- SW_FT_Byte* tag2 = border->tags + count - 1;
-
-
- for ( ; tag1 < tag2; tag1++, tag2-- )
- {
- SW_FT_Byte tmp;
-
-
- tmp = *tag1;
- *tag1 = *tag2;
- *tag2 = tmp;
- }
- }
- }
-
- border->tags[start ] |= SW_FT_STROKE_TAG_BEGIN;
- border->tags[count - 1] |= SW_FT_STROKE_TAG_END;
- }
-
- border->start = -1;
- border->movable = FALSE;
- }
-
-
- static SW_FT_Error
- ft_stroke_border_lineto( SW_FT_StrokeBorder border,
- SW_FT_Vector* to,
- SW_FT_Bool movable )
- {
- SW_FT_Error error = 0;
-
-
- assert( border->start >= 0 );
-
- if ( border->movable )
- {
- /* move last point */
- border->points[border->num_points - 1] = *to;
- }
- else
- {
- /* don't add zero-length lineto */
- if ( border->num_points > 0 &&
- SW_FT_IS_SMALL( border->points[border->num_points - 1].x - to->x ) &&
- SW_FT_IS_SMALL( border->points[border->num_points - 1].y - to->y ) )
- return error;
-
- /* add one point */
- error = ft_stroke_border_grow( border, 1 );
- if ( !error )
- {
- SW_FT_Vector* vec = border->points + border->num_points;
- SW_FT_Byte* tag = border->tags + border->num_points;
-
-
- vec[0] = *to;
- tag[0] = SW_FT_STROKE_TAG_ON;
-
- border->num_points += 1;
- }
- }
- border->movable = movable;
- return error;
- }
-
-
- static SW_FT_Error
- ft_stroke_border_conicto( SW_FT_StrokeBorder border,
- SW_FT_Vector* control,
- SW_FT_Vector* to )
- {
- SW_FT_Error error;
-
-
- assert( border->start >= 0 );
-
- error = ft_stroke_border_grow( border, 2 );
- if ( !error )
- {
- SW_FT_Vector* vec = border->points + border->num_points;
- SW_FT_Byte* tag = border->tags + border->num_points;
-
-
- vec[0] = *control;
- vec[1] = *to;
-
- tag[0] = 0;
- tag[1] = SW_FT_STROKE_TAG_ON;
-
- border->num_points += 2;
- }
-
- border->movable = FALSE;
-
- return error;
- }
-
-
- static SW_FT_Error
- ft_stroke_border_cubicto( SW_FT_StrokeBorder border,
- SW_FT_Vector* control1,
- SW_FT_Vector* control2,
- SW_FT_Vector* to )
- {
- SW_FT_Error error;
-
-
- assert( border->start >= 0 );
-
- error = ft_stroke_border_grow( border, 3 );
- if ( !error )
- {
- SW_FT_Vector* vec = border->points + border->num_points;
- SW_FT_Byte* tag = border->tags + border->num_points;
-
-
- vec[0] = *control1;
- vec[1] = *control2;
- vec[2] = *to;
-
- tag[0] = SW_FT_STROKE_TAG_CUBIC;
- tag[1] = SW_FT_STROKE_TAG_CUBIC;
- tag[2] = SW_FT_STROKE_TAG_ON;
-
- border->num_points += 3;
- }
-
- border->movable = FALSE;
-
- return error;
- }
-
-
-#define SW_FT_ARC_CUBIC_ANGLE ( SW_FT_ANGLE_PI / 2 )
-
-
- static SW_FT_Error
- ft_stroke_border_arcto( SW_FT_StrokeBorder border,
- SW_FT_Vector* center,
- SW_FT_Fixed radius,
- SW_FT_Angle angle_start,
- SW_FT_Angle angle_diff )
- {
- SW_FT_Angle total, angle, step, rotate, next, theta;
- SW_FT_Vector a, b, a2, b2;
- SW_FT_Fixed length;
- SW_FT_Error error = 0;
-
-
- /* compute start point */
- SW_FT_Vector_From_Polar( &a, radius, angle_start );
- a.x += center->x;
- a.y += center->y;
-
- total = angle_diff;
- angle = angle_start;
- rotate = ( angle_diff >= 0 ) ? SW_FT_ANGLE_PI2 : -SW_FT_ANGLE_PI2;
-
- while ( total != 0 )
- {
- step = total;
- if ( step > SW_FT_ARC_CUBIC_ANGLE )
- step = SW_FT_ARC_CUBIC_ANGLE;
-
- else if ( step < -SW_FT_ARC_CUBIC_ANGLE )
- step = -SW_FT_ARC_CUBIC_ANGLE;
-
- next = angle + step;
- theta = step;
- if ( theta < 0 )
- theta = -theta;
-
- theta >>= 1;
-
- /* compute end point */
- SW_FT_Vector_From_Polar( &b, radius, next );
- b.x += center->x;
- b.y += center->y;
-
- /* compute first and second control points */
- length = SW_FT_MulDiv( radius, SW_FT_Sin( theta ) * 4,
- ( 0x10000L + SW_FT_Cos( theta ) ) * 3 );
-
- SW_FT_Vector_From_Polar( &a2, length, angle + rotate );
- a2.x += a.x;
- a2.y += a.y;
-
- SW_FT_Vector_From_Polar( &b2, length, next - rotate );
- b2.x += b.x;
- b2.y += b.y;
-
- /* add cubic arc */
- error = ft_stroke_border_cubicto( border, &a2, &b2, &b );
- if ( error )
- break;
-
- /* process the rest of the arc ?? */
- a = b;
- total -= step;
- angle = next;
- }
-
- return error;
- }
-
-
- static SW_FT_Error
- ft_stroke_border_moveto( SW_FT_StrokeBorder border,
- SW_FT_Vector* to )
- {
- /* close current open path if any ? */
- if ( border->start >= 0 )
- ft_stroke_border_close( border, FALSE );
-
- border->start = border->num_points;
- border->movable = FALSE;
-
- return ft_stroke_border_lineto( border, to, FALSE );
- }
-
-
- static void
- ft_stroke_border_init( SW_FT_StrokeBorder border)
- {
- border->points = NULL;
- border->tags = NULL;
-
- border->num_points = 0;
- border->max_points = 0;
- border->start = -1;
- border->valid = FALSE;
- }
-
-
- static void
- ft_stroke_border_reset( SW_FT_StrokeBorder border )
- {
- border->num_points = 0;
- border->start = -1;
- border->valid = FALSE;
- }
-
-
- static void
- ft_stroke_border_done( SW_FT_StrokeBorder border )
- {
-
- free( border->points );
- free( border->tags );
-
- border->num_points = 0;
- border->max_points = 0;
- border->start = -1;
- border->valid = FALSE;
- }
-
-
- static SW_FT_Error
- ft_stroke_border_get_counts( SW_FT_StrokeBorder border,
- SW_FT_UInt *anum_points,
- SW_FT_UInt *anum_contours )
- {
- SW_FT_Error error = 0;
- SW_FT_UInt num_points = 0;
- SW_FT_UInt num_contours = 0;
-
- SW_FT_UInt count = border->num_points;
- SW_FT_Vector* point = border->points;
- SW_FT_Byte* tags = border->tags;
- SW_FT_Int in_contour = 0;
-
-
- for ( ; count > 0; count--, num_points++, point++, tags++ )
- {
- if ( tags[0] & SW_FT_STROKE_TAG_BEGIN )
- {
- if ( in_contour != 0 )
- goto Fail;
-
- in_contour = 1;
- }
- else if ( in_contour == 0 )
- goto Fail;
-
- if ( tags[0] & SW_FT_STROKE_TAG_END )
- {
- in_contour = 0;
- num_contours++;
- }
- }
-
- if ( in_contour != 0 )
- goto Fail;
-
- border->valid = TRUE;
-
- Exit:
- *anum_points = num_points;
- *anum_contours = num_contours;
- return error;
-
- Fail:
- num_points = 0;
- num_contours = 0;
- goto Exit;
- }
-
-
- static void
- ft_stroke_border_export( SW_FT_StrokeBorder border,
- SW_FT_Outline* outline )
- {
- /* copy point locations */
- memcpy( outline->points + outline->n_points,
- border->points,
- border->num_points * sizeof(SW_FT_Vector));
-
- /* copy tags */
- {
- SW_FT_UInt count = border->num_points;
- SW_FT_Byte* read = border->tags;
- SW_FT_Byte* write = (SW_FT_Byte*)outline->tags + outline->n_points;
-
-
- for ( ; count > 0; count--, read++, write++ )
- {
- if ( *read & SW_FT_STROKE_TAG_ON )
- *write = SW_FT_CURVE_TAG_ON;
- else if ( *read & SW_FT_STROKE_TAG_CUBIC )
- *write = SW_FT_CURVE_TAG_CUBIC;
- else
- *write = SW_FT_CURVE_TAG_CONIC;
- }
- }
-
- /* copy contours */
- {
- SW_FT_UInt count = border->num_points;
- SW_FT_Byte* tags = border->tags;
- SW_FT_Short* write = outline->contours + outline->n_contours;
- SW_FT_Short idx = (SW_FT_Short)outline->n_points;
-
-
- for ( ; count > 0; count--, tags++, idx++ )
- {
- if ( *tags & SW_FT_STROKE_TAG_END )
- {
- *write++ = idx;
- outline->n_contours++;
- }
- }
- }
-
- outline->n_points = (short)( outline->n_points + border->num_points );
-
- assert( SW_FT_Outline_Check( outline ) == 0 );
- }
-
-
- /*************************************************************************/
- /*************************************************************************/
- /***** *****/
- /***** STROKER *****/
- /***** *****/
- /*************************************************************************/
- /*************************************************************************/
-
-#define SW_FT_SIDE_TO_ROTATE( s ) ( SW_FT_ANGLE_PI2 - (s) * SW_FT_ANGLE_PI )
-
- typedef struct SW_FT_StrokerRec_
- {
- SW_FT_Angle angle_in; /* direction into curr join */
- SW_FT_Angle angle_out; /* direction out of join */
- SW_FT_Vector center; /* current position */
- SW_FT_Fixed line_length; /* length of last lineto */
- SW_FT_Bool first_point; /* is this the start? */
- SW_FT_Bool subpath_open; /* is the subpath open? */
- SW_FT_Angle subpath_angle; /* subpath start direction */
- SW_FT_Vector subpath_start; /* subpath start position */
- SW_FT_Fixed subpath_line_length; /* subpath start lineto len */
- SW_FT_Bool handle_wide_strokes; /* use wide strokes logic? */
-
- SW_FT_Stroker_LineCap line_cap;
- SW_FT_Stroker_LineJoin line_join;
- SW_FT_Stroker_LineJoin line_join_saved;
- SW_FT_Fixed miter_limit;
- SW_FT_Fixed radius;
-
- SW_FT_StrokeBorderRec borders[2];
- } SW_FT_StrokerRec;
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_New( SW_FT_Stroker *astroker )
- {
- SW_FT_Error error = 0; /* assigned in SW_FT_NEW */
- SW_FT_Stroker stroker = NULL;
-
-
- stroker = (SW_FT_StrokerRec *) calloc(1, sizeof(SW_FT_StrokerRec));
- if ( stroker )
- {
-
- ft_stroke_border_init( &stroker->borders[0]);
- ft_stroke_border_init( &stroker->borders[1]);
- }
-
- *astroker = stroker;
-
- return error;
- }
-
- void
- SW_FT_Stroker_Rewind( SW_FT_Stroker stroker )
- {
- if ( stroker )
- {
- ft_stroke_border_reset( &stroker->borders[0] );
- ft_stroke_border_reset( &stroker->borders[1] );
- }
- }
-
-
- /* documentation is in ftstroke.h */
-
- void
- SW_FT_Stroker_Set( SW_FT_Stroker stroker,
- SW_FT_Fixed radius,
- SW_FT_Stroker_LineCap line_cap,
- SW_FT_Stroker_LineJoin line_join,
- SW_FT_Fixed miter_limit )
- {
- stroker->radius = radius;
- stroker->line_cap = line_cap;
- stroker->line_join = line_join;
- stroker->miter_limit = miter_limit;
-
- /* ensure miter limit has sensible value */
- if ( stroker->miter_limit < 0x10000 )
- stroker->miter_limit = 0x10000;
-
- /* save line join style: */
- /* line join style can be temporarily changed when stroking curves */
- stroker->line_join_saved = line_join;
-
- SW_FT_Stroker_Rewind( stroker );
- }
-
- /* documentation is in ftstroke.h */
-
- void
- SW_FT_Stroker_Done( SW_FT_Stroker stroker )
- {
- if ( stroker )
- {
-
- ft_stroke_border_done( &stroker->borders[0] );
- ft_stroke_border_done( &stroker->borders[1] );
-
- free( stroker );
- }
- }
-
-
- /* create a circular arc at a corner or cap */
- static SW_FT_Error
- ft_stroker_arcto( SW_FT_Stroker stroker,
- SW_FT_Int side )
- {
- SW_FT_Angle total, rotate;
- SW_FT_Fixed radius = stroker->radius;
- SW_FT_Error error = 0;
- SW_FT_StrokeBorder border = stroker->borders + side;
-
-
- rotate = SW_FT_SIDE_TO_ROTATE( side );
-
- total = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out );
- if ( total == SW_FT_ANGLE_PI )
- total = -rotate * 2;
-
- error = ft_stroke_border_arcto( border,
- &stroker->center,
- radius,
- stroker->angle_in + rotate,
- total );
- border->movable = FALSE;
- return error;
- }
-
-
- /* add a cap at the end of an opened path */
- static SW_FT_Error
- ft_stroker_cap( SW_FT_Stroker stroker,
- SW_FT_Angle angle,
- SW_FT_Int side )
- {
- SW_FT_Error error = 0;
-
-
- if ( stroker->line_cap == SW_FT_STROKER_LINECAP_ROUND )
- {
- /* add a round cap */
- stroker->angle_in = angle;
- stroker->angle_out = angle + SW_FT_ANGLE_PI;
-
- error = ft_stroker_arcto( stroker, side );
- }
- else if ( stroker->line_cap == SW_FT_STROKER_LINECAP_SQUARE )
- {
- /* add a square cap */
- SW_FT_Vector delta, delta2;
- SW_FT_Angle rotate = SW_FT_SIDE_TO_ROTATE( side );
- SW_FT_Fixed radius = stroker->radius;
- SW_FT_StrokeBorder border = stroker->borders + side;
-
-
- SW_FT_Vector_From_Polar( &delta2, radius, angle + rotate );
- SW_FT_Vector_From_Polar( &delta, radius, angle );
-
- delta.x += stroker->center.x + delta2.x;
- delta.y += stroker->center.y + delta2.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
-
- SW_FT_Vector_From_Polar( &delta2, radius, angle - rotate );
- SW_FT_Vector_From_Polar( &delta, radius, angle );
-
- delta.x += delta2.x + stroker->center.x;
- delta.y += delta2.y + stroker->center.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- }
- else if ( stroker->line_cap == SW_FT_STROKER_LINECAP_BUTT )
- {
- /* add a butt ending */
- SW_FT_Vector delta;
- SW_FT_Angle rotate = SW_FT_SIDE_TO_ROTATE( side );
- SW_FT_Fixed radius = stroker->radius;
- SW_FT_StrokeBorder border = stroker->borders + side;
-
-
- SW_FT_Vector_From_Polar( &delta, radius, angle + rotate );
-
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
-
- SW_FT_Vector_From_Polar( &delta, radius, angle - rotate );
-
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- }
-
- Exit:
- return error;
- }
-
-
- /* process an inside corner, i.e. compute intersection */
- static SW_FT_Error
- ft_stroker_inside( SW_FT_Stroker stroker,
- SW_FT_Int side,
- SW_FT_Fixed line_length )
- {
- SW_FT_StrokeBorder border = stroker->borders + side;
- SW_FT_Angle phi, theta, rotate;
- SW_FT_Fixed length, thcos;
- SW_FT_Vector delta;
- SW_FT_Error error = 0;
- SW_FT_Bool intersect; /* use intersection of lines? */
-
-
- rotate = SW_FT_SIDE_TO_ROTATE( side );
-
- theta = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out ) / 2;
-
- /* Only intersect borders if between two lineto's and both */
- /* lines are long enough (line_length is zero for curves). */
- if ( !border->movable || line_length == 0 )
- intersect = FALSE;
- else
- {
- /* compute minimum required length of lines */
- SW_FT_Fixed min_length = ft_pos_abs( SW_FT_MulFix( stroker->radius,
- SW_FT_Tan( theta ) ) );
-
-
- intersect = SW_FT_BOOL( stroker->line_length >= min_length &&
- line_length >= min_length );
- }
-
- if ( !intersect )
- {
- SW_FT_Vector_From_Polar( &delta, stroker->radius,
- stroker->angle_out + rotate );
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- border->movable = FALSE;
- }
- else
- {
- /* compute median angle */
- phi = stroker->angle_in + theta;
-
- thcos = SW_FT_Cos( theta );
-
- length = SW_FT_DivFix( stroker->radius, thcos );
-
- SW_FT_Vector_From_Polar( &delta, length, phi + rotate );
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
- }
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
-
- return error;
- }
-
-
- /* process an outside corner, i.e. compute bevel/miter/round */
- static SW_FT_Error
- ft_stroker_outside( SW_FT_Stroker stroker,
- SW_FT_Int side,
- SW_FT_Fixed line_length )
- {
- SW_FT_StrokeBorder border = stroker->borders + side;
- SW_FT_Error error;
- SW_FT_Angle rotate;
-
-
- if ( stroker->line_join == SW_FT_STROKER_LINEJOIN_ROUND )
- error = ft_stroker_arcto( stroker, side );
- else
- {
- /* this is a mitered (pointed) or beveled (truncated) corner */
- SW_FT_Fixed sigma = 0, radius = stroker->radius;
- SW_FT_Angle theta = 0, phi = 0;
- SW_FT_Fixed thcos = 0;
- SW_FT_Bool bevel, fixed_bevel;
-
-
- rotate = SW_FT_SIDE_TO_ROTATE( side );
-
- bevel =
- SW_FT_BOOL( stroker->line_join == SW_FT_STROKER_LINEJOIN_BEVEL );
-
- fixed_bevel =
- SW_FT_BOOL( stroker->line_join != SW_FT_STROKER_LINEJOIN_MITER_VARIABLE );
-
- if ( !bevel )
- {
- theta = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out );
-
- if ( theta == SW_FT_ANGLE_PI )
- {
- theta = rotate;
- phi = stroker->angle_in;
- }
- else
- {
- theta /= 2;
- phi = stroker->angle_in + theta + rotate;
- }
-
- thcos = SW_FT_Cos( theta );
- sigma = SW_FT_MulFix( stroker->miter_limit, thcos );
-
- /* is miter limit exceeded? */
- if ( sigma < 0x10000L )
- {
- /* don't create variable bevels for very small deviations; */
- /* SW_FT_Sin(x) = 0 for x <= 57 */
- if ( fixed_bevel || ft_pos_abs( theta ) > 57 )
- bevel = TRUE;
- }
- }
-
- if ( bevel ) /* this is a bevel (broken angle) */
- {
- if ( fixed_bevel )
- {
- /* the outer corners are simply joined together */
- SW_FT_Vector delta;
-
-
- /* add bevel */
- SW_FT_Vector_From_Polar( &delta,
- radius,
- stroker->angle_out + rotate );
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- border->movable = FALSE;
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- }
- else /* variable bevel */
- {
- /* the miter is truncated */
- SW_FT_Vector middle, delta;
- SW_FT_Fixed length;
-
-
- /* compute middle point */
- SW_FT_Vector_From_Polar( &middle,
- SW_FT_MulFix( radius, stroker->miter_limit ),
- phi );
- middle.x += stroker->center.x;
- middle.y += stroker->center.y;
-
- /* compute first angle point */
- length = SW_FT_MulDiv( radius, 0x10000L - sigma,
- ft_pos_abs( SW_FT_Sin( theta ) ) );
-
- SW_FT_Vector_From_Polar( &delta, length, phi + rotate );
- delta.x += middle.x;
- delta.y += middle.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
-
- /* compute second angle point */
- SW_FT_Vector_From_Polar( &delta, length, phi - rotate );
- delta.x += middle.x;
- delta.y += middle.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
-
- /* finally, add an end point; only needed if not lineto */
- /* (line_length is zero for curves) */
- if ( line_length == 0 )
- {
- SW_FT_Vector_From_Polar( &delta,
- radius,
- stroker->angle_out + rotate );
-
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- }
- }
- }
- else /* this is a miter (intersection) */
- {
- SW_FT_Fixed length;
- SW_FT_Vector delta;
-
-
- length = SW_FT_DivFix( stroker->radius, thcos );
-
- SW_FT_Vector_From_Polar( &delta, length, phi );
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
-
- /* now add an end point; only needed if not lineto */
- /* (line_length is zero for curves) */
- if ( line_length == 0 )
- {
- SW_FT_Vector_From_Polar( &delta,
- stroker->radius,
- stroker->angle_out + rotate );
- delta.x += stroker->center.x;
- delta.y += stroker->center.y;
-
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- }
- }
- }
-
- Exit:
- return error;
- }
-
-
- static SW_FT_Error
- ft_stroker_process_corner( SW_FT_Stroker stroker,
- SW_FT_Fixed line_length )
- {
- SW_FT_Error error = 0;
- SW_FT_Angle turn;
- SW_FT_Int inside_side;
-
-
- turn = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out );
-
- /* no specific corner processing is required if the turn is 0 */
- if ( turn == 0 )
- goto Exit;
-
- /* when we turn to the right, the inside side is 0 */
- inside_side = 0;
-
- /* otherwise, the inside side is 1 */
- if ( turn < 0 )
- inside_side = 1;
-
- /* process the inside side */
- error = ft_stroker_inside( stroker, inside_side, line_length );
- if ( error )
- goto Exit;
-
- /* process the outside side */
- error = ft_stroker_outside( stroker, 1 - inside_side, line_length );
-
- Exit:
- return error;
- }
-
-
- /* add two points to the left and right borders corresponding to the */
- /* start of the subpath */
- static SW_FT_Error
- ft_stroker_subpath_start( SW_FT_Stroker stroker,
- SW_FT_Angle start_angle,
- SW_FT_Fixed line_length )
- {
- SW_FT_Vector delta;
- SW_FT_Vector point;
- SW_FT_Error error;
- SW_FT_StrokeBorder border;
-
-
- SW_FT_Vector_From_Polar( &delta, stroker->radius,
- start_angle + SW_FT_ANGLE_PI2 );
-
- point.x = stroker->center.x + delta.x;
- point.y = stroker->center.y + delta.y;
-
- border = stroker->borders;
- error = ft_stroke_border_moveto( border, &point );
- if ( error )
- goto Exit;
-
- point.x = stroker->center.x - delta.x;
- point.y = stroker->center.y - delta.y;
-
- border++;
- error = ft_stroke_border_moveto( border, &point );
-
- /* save angle, position, and line length for last join */
- /* (line_length is zero for curves) */
- stroker->subpath_angle = start_angle;
- stroker->first_point = FALSE;
- stroker->subpath_line_length = line_length;
-
- Exit:
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_LineTo( SW_FT_Stroker stroker,
- SW_FT_Vector* to )
- {
- SW_FT_Error error = 0;
- SW_FT_StrokeBorder border;
- SW_FT_Vector delta;
- SW_FT_Angle angle;
- SW_FT_Int side;
- SW_FT_Fixed line_length;
-
-
- delta.x = to->x - stroker->center.x;
- delta.y = to->y - stroker->center.y;
-
- /* a zero-length lineto is a no-op; avoid creating a spurious corner */
- if ( delta.x == 0 && delta.y == 0 )
- goto Exit;
-
- /* compute length of line */
- line_length = SW_FT_Vector_Length( &delta );
-
- angle = SW_FT_Atan2( delta.x, delta.y );
- SW_FT_Vector_From_Polar( &delta, stroker->radius, angle + SW_FT_ANGLE_PI2 );
-
- /* process corner if necessary */
- if ( stroker->first_point )
- {
- /* This is the first segment of a subpath. We need to */
- /* add a point to each border at their respective starting */
- /* point locations. */
- error = ft_stroker_subpath_start( stroker, angle, line_length );
- if ( error )
- goto Exit;
- }
- else
- {
- /* process the current corner */
- stroker->angle_out = angle;
- error = ft_stroker_process_corner( stroker, line_length );
- if ( error )
- goto Exit;
- }
-
- /* now add a line segment to both the `inside' and `outside' paths */
- for ( border = stroker->borders, side = 1; side >= 0; side--, border++ )
- {
- SW_FT_Vector point;
-
-
- point.x = to->x + delta.x;
- point.y = to->y + delta.y;
-
- /* the ends of lineto borders are movable */
- error = ft_stroke_border_lineto( border, &point, TRUE );
- if ( error )
- goto Exit;
-
- delta.x = -delta.x;
- delta.y = -delta.y;
- }
-
- stroker->angle_in = angle;
- stroker->center = *to;
- stroker->line_length = line_length;
-
- Exit:
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_ConicTo( SW_FT_Stroker stroker,
- SW_FT_Vector* control,
- SW_FT_Vector* to )
- {
- SW_FT_Error error = 0;
- SW_FT_Vector bez_stack[34];
- SW_FT_Vector* arc;
- SW_FT_Vector* limit = bez_stack + 30;
- SW_FT_Bool first_arc = TRUE;
-
-
- /* if all control points are coincident, this is a no-op; */
- /* avoid creating a spurious corner */
- if ( SW_FT_IS_SMALL( stroker->center.x - control->x ) &&
- SW_FT_IS_SMALL( stroker->center.y - control->y ) &&
- SW_FT_IS_SMALL( control->x - to->x ) &&
- SW_FT_IS_SMALL( control->y - to->y ) )
- {
- stroker->center = *to;
- goto Exit;
- }
-
- arc = bez_stack;
- arc[0] = *to;
- arc[1] = *control;
- arc[2] = stroker->center;
-
- while ( arc >= bez_stack )
- {
- SW_FT_Angle angle_in, angle_out;
-
-
- /* initialize with current direction */
- angle_in = angle_out = stroker->angle_in;
-
- if ( arc < limit &&
- !ft_conic_is_small_enough( arc, &angle_in, &angle_out ) )
- {
- if ( stroker->first_point )
- stroker->angle_in = angle_in;
-
- ft_conic_split( arc );
- arc += 2;
- continue;
- }
-
- if ( first_arc )
- {
- first_arc = FALSE;
-
- /* process corner if necessary */
- if ( stroker->first_point )
- error = ft_stroker_subpath_start( stroker, angle_in, 0 );
- else
- {
- stroker->angle_out = angle_in;
- error = ft_stroker_process_corner( stroker, 0 );
- }
- }
- else if ( ft_pos_abs( SW_FT_Angle_Diff( stroker->angle_in, angle_in ) ) >
- SW_FT_SMALL_CONIC_THRESHOLD / 4 )
- {
- /* if the deviation from one arc to the next is too great, */
- /* add a round corner */
- stroker->center = arc[2];
- stroker->angle_out = angle_in;
- stroker->line_join = SW_FT_STROKER_LINEJOIN_ROUND;
-
- error = ft_stroker_process_corner( stroker, 0 );
-
- /* reinstate line join style */
- stroker->line_join = stroker->line_join_saved;
- }
-
- if ( error )
- goto Exit;
-
- /* the arc's angle is small enough; we can add it directly to each */
- /* border */
- {
- SW_FT_Vector ctrl, end;
- SW_FT_Angle theta, phi, rotate, alpha0 = 0;
- SW_FT_Fixed length;
- SW_FT_StrokeBorder border;
- SW_FT_Int side;
-
-
- theta = SW_FT_Angle_Diff( angle_in, angle_out ) / 2;
- phi = angle_in + theta;
- length = SW_FT_DivFix( stroker->radius, SW_FT_Cos( theta ) );
-
- /* compute direction of original arc */
- if ( stroker->handle_wide_strokes )
- alpha0 = SW_FT_Atan2( arc[0].x - arc[2].x, arc[0].y - arc[2].y );
-
- for ( border = stroker->borders, side = 0;
- side <= 1;
- side++, border++ )
- {
- rotate = SW_FT_SIDE_TO_ROTATE( side );
-
- /* compute control point */
- SW_FT_Vector_From_Polar( &ctrl, length, phi + rotate );
- ctrl.x += arc[1].x;
- ctrl.y += arc[1].y;
-
- /* compute end point */
- SW_FT_Vector_From_Polar( &end, stroker->radius, angle_out + rotate );
- end.x += arc[0].x;
- end.y += arc[0].y;
-
- if ( stroker->handle_wide_strokes )
- {
- SW_FT_Vector start;
- SW_FT_Angle alpha1;
-
-
- /* determine whether the border radius is greater than the */
- /* radius of curvature of the original arc */
- start = border->points[border->num_points - 1];
-
- alpha1 = SW_FT_Atan2( end.x - start.x, end.y - start.y );
-
- /* is the direction of the border arc opposite to */
- /* that of the original arc? */
- if ( ft_pos_abs( SW_FT_Angle_Diff( alpha0, alpha1 ) ) >
- SW_FT_ANGLE_PI / 2 )
- {
- SW_FT_Angle beta, gamma;
- SW_FT_Vector bvec, delta;
- SW_FT_Fixed blen, sinA, sinB, alen;
-
-
- /* use the sine rule to find the intersection point */
- beta = SW_FT_Atan2( arc[2].x - start.x, arc[2].y - start.y );
- gamma = SW_FT_Atan2( arc[0].x - end.x, arc[0].y - end.y );
-
- bvec.x = end.x - start.x;
- bvec.y = end.y - start.y;
-
- blen = SW_FT_Vector_Length( &bvec );
-
- sinA = ft_pos_abs( SW_FT_Sin( alpha1 - gamma ) );
- sinB = ft_pos_abs( SW_FT_Sin( beta - gamma ) );
-
- alen = SW_FT_MulDiv( blen, sinA, sinB );
-
- SW_FT_Vector_From_Polar( &delta, alen, beta );
- delta.x += start.x;
- delta.y += start.y;
-
- /* circumnavigate the negative sector backwards */
- border->movable = FALSE;
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
- error = ft_stroke_border_lineto( border, &end, FALSE );
- if ( error )
- goto Exit;
- error = ft_stroke_border_conicto( border, &ctrl, &start );
- if ( error )
- goto Exit;
- /* and then move to the endpoint */
- error = ft_stroke_border_lineto( border, &end, FALSE );
- if ( error )
- goto Exit;
-
- continue;
- }
-
- /* else fall through */
- }
-
- /* simply add an arc */
- error = ft_stroke_border_conicto( border, &ctrl, &end );
- if ( error )
- goto Exit;
- }
- }
-
- arc -= 2;
-
- stroker->angle_in = angle_out;
- }
-
- stroker->center = *to;
-
- Exit:
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_CubicTo( SW_FT_Stroker stroker,
- SW_FT_Vector* control1,
- SW_FT_Vector* control2,
- SW_FT_Vector* to )
- {
- SW_FT_Error error = 0;
- SW_FT_Vector bez_stack[37];
- SW_FT_Vector* arc;
- SW_FT_Vector* limit = bez_stack + 32;
- SW_FT_Bool first_arc = TRUE;
-
-
- /* if all control points are coincident, this is a no-op; */
- /* avoid creating a spurious corner */
- if ( SW_FT_IS_SMALL( stroker->center.x - control1->x ) &&
- SW_FT_IS_SMALL( stroker->center.y - control1->y ) &&
- SW_FT_IS_SMALL( control1->x - control2->x ) &&
- SW_FT_IS_SMALL( control1->y - control2->y ) &&
- SW_FT_IS_SMALL( control2->x - to->x ) &&
- SW_FT_IS_SMALL( control2->y - to->y ) )
- {
- stroker->center = *to;
- goto Exit;
- }
-
- arc = bez_stack;
- arc[0] = *to;
- arc[1] = *control2;
- arc[2] = *control1;
- arc[3] = stroker->center;
-
- while ( arc >= bez_stack )
- {
- SW_FT_Angle angle_in, angle_mid, angle_out;
-
-
- /* initialize with current direction */
- angle_in = angle_out = angle_mid = stroker->angle_in;
-
- if ( arc < limit &&
- !ft_cubic_is_small_enough( arc, &angle_in,
- &angle_mid, &angle_out ) )
- {
- if ( stroker->first_point )
- stroker->angle_in = angle_in;
-
- ft_cubic_split( arc );
- arc += 3;
- continue;
- }
-
- if ( first_arc )
- {
- first_arc = FALSE;
-
- /* process corner if necessary */
- if ( stroker->first_point )
- error = ft_stroker_subpath_start( stroker, angle_in, 0 );
- else
- {
- stroker->angle_out = angle_in;
- error = ft_stroker_process_corner( stroker, 0 );
- }
- }
- else if ( ft_pos_abs( SW_FT_Angle_Diff( stroker->angle_in, angle_in ) ) >
- SW_FT_SMALL_CUBIC_THRESHOLD / 4 )
- {
- /* if the deviation from one arc to the next is too great, */
- /* add a round corner */
- stroker->center = arc[3];
- stroker->angle_out = angle_in;
- stroker->line_join = SW_FT_STROKER_LINEJOIN_ROUND;
-
- error = ft_stroker_process_corner( stroker, 0 );
-
- /* reinstate line join style */
- stroker->line_join = stroker->line_join_saved;
- }
-
- if ( error )
- goto Exit;
-
- /* the arc's angle is small enough; we can add it directly to each */
- /* border */
- {
- SW_FT_Vector ctrl1, ctrl2, end;
- SW_FT_Angle theta1, phi1, theta2, phi2, rotate, alpha0 = 0;
- SW_FT_Fixed length1, length2;
- SW_FT_StrokeBorder border;
- SW_FT_Int side;
-
-
- theta1 = SW_FT_Angle_Diff( angle_in, angle_mid ) / 2;
- theta2 = SW_FT_Angle_Diff( angle_mid, angle_out ) / 2;
- phi1 = ft_angle_mean( angle_in, angle_mid );
- phi2 = ft_angle_mean( angle_mid, angle_out );
- length1 = SW_FT_DivFix( stroker->radius, SW_FT_Cos( theta1 ) );
- length2 = SW_FT_DivFix( stroker->radius, SW_FT_Cos( theta2 ) );
-
- /* compute direction of original arc */
- if ( stroker->handle_wide_strokes )
- alpha0 = SW_FT_Atan2( arc[0].x - arc[3].x, arc[0].y - arc[3].y );
-
- for ( border = stroker->borders, side = 0;
- side <= 1;
- side++, border++ )
- {
- rotate = SW_FT_SIDE_TO_ROTATE( side );
-
- /* compute control points */
- SW_FT_Vector_From_Polar( &ctrl1, length1, phi1 + rotate );
- ctrl1.x += arc[2].x;
- ctrl1.y += arc[2].y;
-
- SW_FT_Vector_From_Polar( &ctrl2, length2, phi2 + rotate );
- ctrl2.x += arc[1].x;
- ctrl2.y += arc[1].y;
-
- /* compute end point */
- SW_FT_Vector_From_Polar( &end, stroker->radius, angle_out + rotate );
- end.x += arc[0].x;
- end.y += arc[0].y;
-
- if ( stroker->handle_wide_strokes )
- {
- SW_FT_Vector start;
- SW_FT_Angle alpha1;
-
-
- /* determine whether the border radius is greater than the */
- /* radius of curvature of the original arc */
- start = border->points[border->num_points - 1];
-
- alpha1 = SW_FT_Atan2( end.x - start.x, end.y - start.y );
-
- /* is the direction of the border arc opposite to */
- /* that of the original arc? */
- if ( ft_pos_abs( SW_FT_Angle_Diff( alpha0, alpha1 ) ) >
- SW_FT_ANGLE_PI / 2 )
- {
- SW_FT_Angle beta, gamma;
- SW_FT_Vector bvec, delta;
- SW_FT_Fixed blen, sinA, sinB, alen;
-
-
- /* use the sine rule to find the intersection point */
- beta = SW_FT_Atan2( arc[3].x - start.x, arc[3].y - start.y );
- gamma = SW_FT_Atan2( arc[0].x - end.x, arc[0].y - end.y );
-
- bvec.x = end.x - start.x;
- bvec.y = end.y - start.y;
-
- blen = SW_FT_Vector_Length( &bvec );
-
- sinA = ft_pos_abs( SW_FT_Sin( alpha1 - gamma ) );
- sinB = ft_pos_abs( SW_FT_Sin( beta - gamma ) );
-
- alen = SW_FT_MulDiv( blen, sinA, sinB );
-
- SW_FT_Vector_From_Polar( &delta, alen, beta );
- delta.x += start.x;
- delta.y += start.y;
-
- /* circumnavigate the negative sector backwards */
- border->movable = FALSE;
- error = ft_stroke_border_lineto( border, &delta, FALSE );
- if ( error )
- goto Exit;
- error = ft_stroke_border_lineto( border, &end, FALSE );
- if ( error )
- goto Exit;
- error = ft_stroke_border_cubicto( border,
- &ctrl2,
- &ctrl1,
- &start );
- if ( error )
- goto Exit;
- /* and then move to the endpoint */
- error = ft_stroke_border_lineto( border, &end, FALSE );
- if ( error )
- goto Exit;
-
- continue;
- }
-
- /* else fall through */
- }
-
- /* simply add an arc */
- error = ft_stroke_border_cubicto( border, &ctrl1, &ctrl2, &end );
- if ( error )
- goto Exit;
- }
- }
-
- arc -= 3;
-
- stroker->angle_in = angle_out;
- }
-
- stroker->center = *to;
-
- Exit:
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_BeginSubPath( SW_FT_Stroker stroker,
- SW_FT_Vector* to,
- SW_FT_Bool open )
- {
- /* We cannot process the first point, because there is not enough */
- /* information regarding its corner/cap. The latter will be processed */
- /* in the `SW_FT_Stroker_EndSubPath' routine. */
- /* */
- stroker->first_point = TRUE;
- stroker->center = *to;
- stroker->subpath_open = open;
-
- /* Determine if we need to check whether the border radius is greater */
- /* than the radius of curvature of a curve, to handle this case */
- /* specially. This is only required if bevel joins or butt caps may */
- /* be created, because round & miter joins and round & square caps */
- /* cover the negative sector created with wide strokes. */
- stroker->handle_wide_strokes =
- SW_FT_BOOL( stroker->line_join != SW_FT_STROKER_LINEJOIN_ROUND ||
- ( stroker->subpath_open &&
- stroker->line_cap == SW_FT_STROKER_LINECAP_BUTT ) );
-
- /* record the subpath start point for each border */
- stroker->subpath_start = *to;
-
- stroker->angle_in = 0;
-
- return 0;
- }
-
-
- static SW_FT_Error
- ft_stroker_add_reverse_left( SW_FT_Stroker stroker,
- SW_FT_Bool open )
- {
- SW_FT_StrokeBorder right = stroker->borders + 0;
- SW_FT_StrokeBorder left = stroker->borders + 1;
- SW_FT_Int new_points;
- SW_FT_Error error = 0;
-
-
- assert( left->start >= 0 );
-
- new_points = left->num_points - left->start;
- if ( new_points > 0 )
- {
- error = ft_stroke_border_grow( right, (SW_FT_UInt)new_points );
- if ( error )
- goto Exit;
-
- {
- SW_FT_Vector* dst_point = right->points + right->num_points;
- SW_FT_Byte* dst_tag = right->tags + right->num_points;
- SW_FT_Vector* src_point = left->points + left->num_points - 1;
- SW_FT_Byte* src_tag = left->tags + left->num_points - 1;
-
-
- while ( src_point >= left->points + left->start )
- {
- *dst_point = *src_point;
- *dst_tag = *src_tag;
-
- if ( open )
- dst_tag[0] &= ~SW_FT_STROKE_TAG_BEGIN_END;
- else
- {
- SW_FT_Byte ttag =
- (SW_FT_Byte)( dst_tag[0] & SW_FT_STROKE_TAG_BEGIN_END );
-
-
- /* switch begin/end tags if necessary */
- if ( ttag == SW_FT_STROKE_TAG_BEGIN ||
- ttag == SW_FT_STROKE_TAG_END )
- dst_tag[0] ^= SW_FT_STROKE_TAG_BEGIN_END;
- }
-
- src_point--;
- src_tag--;
- dst_point++;
- dst_tag++;
- }
- }
-
- left->num_points = left->start;
- right->num_points += new_points;
-
- right->movable = FALSE;
- left->movable = FALSE;
- }
-
- Exit:
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- /* there's a lot of magic in this function! */
- SW_FT_Error
- SW_FT_Stroker_EndSubPath( SW_FT_Stroker stroker )
- {
- SW_FT_Error error = 0;
-
-
- if ( stroker->subpath_open )
- {
- SW_FT_StrokeBorder right = stroker->borders;
-
-
- /* All right, this is an opened path, we need to add a cap between */
- /* right & left, add the reverse of left, then add a final cap */
- /* between left & right. */
- error = ft_stroker_cap( stroker, stroker->angle_in, 0 );
- if ( error )
- goto Exit;
-
- /* add reversed points from `left' to `right' */
- error = ft_stroker_add_reverse_left( stroker, TRUE );
- if ( error )
- goto Exit;
-
- /* now add the final cap */
- stroker->center = stroker->subpath_start;
- error = ft_stroker_cap( stroker,
- stroker->subpath_angle + SW_FT_ANGLE_PI, 0 );
- if ( error )
- goto Exit;
-
- /* Now end the right subpath accordingly. The left one is */
- /* rewind and doesn't need further processing. */
- ft_stroke_border_close( right, FALSE );
- }
- else
- {
- SW_FT_Angle turn;
- SW_FT_Int inside_side;
-
-
- /* close the path if needed */
- if ( stroker->center.x != stroker->subpath_start.x ||
- stroker->center.y != stroker->subpath_start.y )
- {
- error = SW_FT_Stroker_LineTo( stroker, &stroker->subpath_start );
- if ( error )
- goto Exit;
- }
-
- /* process the corner */
- stroker->angle_out = stroker->subpath_angle;
- turn = SW_FT_Angle_Diff( stroker->angle_in,
- stroker->angle_out );
-
- /* no specific corner processing is required if the turn is 0 */
- if ( turn != 0 )
- {
- /* when we turn to the right, the inside side is 0 */
- inside_side = 0;
-
- /* otherwise, the inside side is 1 */
- if ( turn < 0 )
- inside_side = 1;
-
- error = ft_stroker_inside( stroker,
- inside_side,
- stroker->subpath_line_length );
- if ( error )
- goto Exit;
-
- /* process the outside side */
- error = ft_stroker_outside( stroker,
- 1 - inside_side,
- stroker->subpath_line_length );
- if ( error )
- goto Exit;
- }
-
- /* then end our two subpaths */
- ft_stroke_border_close( stroker->borders + 0, FALSE );
- ft_stroke_border_close( stroker->borders + 1, TRUE );
- }
-
- Exit:
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_GetBorderCounts( SW_FT_Stroker stroker,
- SW_FT_StrokerBorder border,
- SW_FT_UInt *anum_points,
- SW_FT_UInt *anum_contours )
- {
- SW_FT_UInt num_points = 0, num_contours = 0;
- SW_FT_Error error;
-
-
- if ( !stroker || border > 1 )
- {
- error = -1;//SW_FT_THROW( Invalid_Argument );
- goto Exit;
- }
-
- error = ft_stroke_border_get_counts( stroker->borders + border,
- &num_points, &num_contours );
- Exit:
- if ( anum_points )
- *anum_points = num_points;
-
- if ( anum_contours )
- *anum_contours = num_contours;
-
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- SW_FT_Error
- SW_FT_Stroker_GetCounts( SW_FT_Stroker stroker,
- SW_FT_UInt *anum_points,
- SW_FT_UInt *anum_contours )
- {
- SW_FT_UInt count1, count2, num_points = 0;
- SW_FT_UInt count3, count4, num_contours = 0;
- SW_FT_Error error;
-
-
- error = ft_stroke_border_get_counts( stroker->borders + 0,
- &count1, &count2 );
- if ( error )
- goto Exit;
-
- error = ft_stroke_border_get_counts( stroker->borders + 1,
- &count3, &count4 );
- if ( error )
- goto Exit;
-
- num_points = count1 + count3;
- num_contours = count2 + count4;
-
- Exit:
- *anum_points = num_points;
- *anum_contours = num_contours;
- return error;
- }
-
-
- /* documentation is in ftstroke.h */
-
- void
- SW_FT_Stroker_ExportBorder( SW_FT_Stroker stroker,
- SW_FT_StrokerBorder border,
- SW_FT_Outline* outline )
- {
- if ( border == SW_FT_STROKER_BORDER_LEFT ||
- border == SW_FT_STROKER_BORDER_RIGHT )
- {
- SW_FT_StrokeBorder sborder = & stroker->borders[border];
-
-
- if ( sborder->valid )
- ft_stroke_border_export( sborder, outline );
- }
- }
-
-
- /* documentation is in ftstroke.h */
-
- void
- SW_FT_Stroker_Export( SW_FT_Stroker stroker,
- SW_FT_Outline* outline )
- {
- SW_FT_Stroker_ExportBorder( stroker, SW_FT_STROKER_BORDER_LEFT, outline );
- SW_FT_Stroker_ExportBorder( stroker, SW_FT_STROKER_BORDER_RIGHT, outline );
- }
-
-
- /* documentation is in ftstroke.h */
-
- /*
- * The following is very similar to SW_FT_Outline_Decompose, except
- * that we do support opened paths, and do not scale the outline.
- */
- SW_FT_Error
- SW_FT_Stroker_ParseOutline( SW_FT_Stroker stroker,
- SW_FT_Outline* outline,
- SW_FT_Bool opened )
- {
- SW_FT_Vector v_last;
- SW_FT_Vector v_control;
- SW_FT_Vector v_start;
-
- SW_FT_Vector* point;
- SW_FT_Vector* limit;
- char* tags;
-
- SW_FT_Error error;
-
- SW_FT_Int n; /* index of contour in outline */
- SW_FT_UInt first; /* index of first point in contour */
- SW_FT_Int tag; /* current point's state */
-
-
- if ( !outline || !stroker )
- return -1;//SW_FT_THROW( Invalid_Argument );
-
- SW_FT_Stroker_Rewind( stroker );
-
- first = 0;
-
- for ( n = 0; n < outline->n_contours; n++ )
- {
- SW_FT_UInt last; /* index of last point in contour */
-
-
- last = outline->contours[n];
- limit = outline->points + last;
-
- /* skip empty points; we don't stroke these */
- if ( last <= first )
- {
- first = last + 1;
- continue;
- }
-
- v_start = outline->points[first];
- v_last = outline->points[last];
-
- v_control = v_start;
-
- point = outline->points + first;
- tags = outline->tags + first;
- tag = SW_FT_CURVE_TAG( tags[0] );
-
- /* A contour cannot start with a cubic control point! */
- if ( tag == SW_FT_CURVE_TAG_CUBIC )
- goto Invalid_Outline;
-
- /* check first point to determine origin */
- if ( tag == SW_FT_CURVE_TAG_CONIC )
- {
- /* First point is conic control. Yes, this happens. */
- if ( SW_FT_CURVE_TAG( outline->tags[last] ) == SW_FT_CURVE_TAG_ON )
- {
- /* start at last point if it is on the curve */
- v_start = v_last;
- limit--;
- }
- else
- {
- /* if both first and last points are conic, */
- /* start at their middle */
- v_start.x = ( v_start.x + v_last.x ) / 2;
- v_start.y = ( v_start.y + v_last.y ) / 2;
- }
- point--;
- tags--;
- }
-
- error = SW_FT_Stroker_BeginSubPath( stroker, &v_start, opened );
- if ( error )
- goto Exit;
-
- while ( point < limit )
- {
- point++;
- tags++;
-
- tag = SW_FT_CURVE_TAG( tags[0] );
- switch ( tag )
- {
- case SW_FT_CURVE_TAG_ON: /* emit a single line_to */
- {
- SW_FT_Vector vec;
-
-
- vec.x = point->x;
- vec.y = point->y;
-
- error = SW_FT_Stroker_LineTo( stroker, &vec );
- if ( error )
- goto Exit;
- continue;
- }
-
- case SW_FT_CURVE_TAG_CONIC: /* consume conic arcs */
- v_control.x = point->x;
- v_control.y = point->y;
-
- Do_Conic:
- if ( point < limit )
- {
- SW_FT_Vector vec;
- SW_FT_Vector v_middle;
-
-
- point++;
- tags++;
- tag = SW_FT_CURVE_TAG( tags[0] );
-
- vec = point[0];
-
- if ( tag == SW_FT_CURVE_TAG_ON )
- {
- error = SW_FT_Stroker_ConicTo( stroker, &v_control, &vec );
- if ( error )
- goto Exit;
- continue;
- }
-
- if ( tag != SW_FT_CURVE_TAG_CONIC )
- goto Invalid_Outline;
-
- v_middle.x = ( v_control.x + vec.x ) / 2;
- v_middle.y = ( v_control.y + vec.y ) / 2;
-
- error = SW_FT_Stroker_ConicTo( stroker, &v_control, &v_middle );
- if ( error )
- goto Exit;
-
- v_control = vec;
- goto Do_Conic;
- }
-
- error = SW_FT_Stroker_ConicTo( stroker, &v_control, &v_start );
- goto Close;
-
- default: /* SW_FT_CURVE_TAG_CUBIC */
- {
- SW_FT_Vector vec1, vec2;
-
-
- if ( point + 1 > limit ||
- SW_FT_CURVE_TAG( tags[1] ) != SW_FT_CURVE_TAG_CUBIC )
- goto Invalid_Outline;
-
- point += 2;
- tags += 2;
-
- vec1 = point[-2];
- vec2 = point[-1];
-
- if ( point <= limit )
- {
- SW_FT_Vector vec;
-
-
- vec = point[0];
-
- error = SW_FT_Stroker_CubicTo( stroker, &vec1, &vec2, &vec );
- if ( error )
- goto Exit;
- continue;
- }
-
- error = SW_FT_Stroker_CubicTo( stroker, &vec1, &vec2, &v_start );
- goto Close;
- }
- }
- }
-
- Close:
- if ( error )
- goto Exit;
-
- /* don't try to end the path if no segments have been generated */
- if ( !stroker->first_point )
- {
- error = SW_FT_Stroker_EndSubPath( stroker );
- if ( error )
- goto Exit;
- }
-
- first = last + 1;
- }
-
- return 0;
-
- Exit:
- return error;
-
- Invalid_Outline:
- return -2;//SW_FT_THROW( Invalid_Outline );
- }
-
-
-/* END */
+
+/***************************************************************************/
+/* */
+/* ftstroke.c */
+/* */
+/* FreeType path stroker (body). */
+/* */
+/* Copyright 2002-2006, 2008-2011, 2013 by */
+/* David Turner, Robert Wilhelm, and Werner Lemberg. */
+/* */
+/* This file is part of the FreeType project, and may only be used, */
+/* modified, and distributed under the terms of the FreeType project */
+/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
+/* this file you indicate that you have read the license and */
+/* understand and accept it fully. */
+/* */
+/***************************************************************************/
+
+
+#include "sw_ft_math.h"
+#include "sw_ft_stroker.h"
+#include <assert.h>
+#include <string.h>
+#include <stdlib.h>
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /***** *****/
+ /***** BEZIER COMPUTATIONS *****/
+ /***** *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+#define SW_FT_SMALL_CONIC_THRESHOLD ( SW_FT_ANGLE_PI / 6 )
+#define SW_FT_SMALL_CUBIC_THRESHOLD ( SW_FT_ANGLE_PI / 8 )
+
+#define SW_FT_EPSILON 2
+
+#define SW_FT_IS_SMALL( x ) ( (x) > -SW_FT_EPSILON && (x) < SW_FT_EPSILON )
+
+
+ static SW_FT_Pos
+ ft_pos_abs( SW_FT_Pos x )
+ {
+ return x >= 0 ? x : -x;
+ }
+
+
+ static void
+ ft_conic_split( SW_FT_Vector* base )
+ {
+ SW_FT_Pos a, b;
+
+
+ base[4].x = base[2].x;
+ b = base[1].x;
+ a = base[3].x = ( base[2].x + b ) / 2;
+ b = base[1].x = ( base[0].x + b ) / 2;
+ base[2].x = ( a + b ) / 2;
+
+ base[4].y = base[2].y;
+ b = base[1].y;
+ a = base[3].y = ( base[2].y + b ) / 2;
+ b = base[1].y = ( base[0].y + b ) / 2;
+ base[2].y = ( a + b ) / 2;
+ }
+
+
+ static SW_FT_Bool
+ ft_conic_is_small_enough( SW_FT_Vector* base,
+ SW_FT_Angle *angle_in,
+ SW_FT_Angle *angle_out )
+ {
+ SW_FT_Vector d1, d2;
+ SW_FT_Angle theta;
+ SW_FT_Int close1, close2;
+
+
+ d1.x = base[1].x - base[2].x;
+ d1.y = base[1].y - base[2].y;
+ d2.x = base[0].x - base[1].x;
+ d2.y = base[0].y - base[1].y;
+
+ close1 = SW_FT_IS_SMALL( d1.x ) && SW_FT_IS_SMALL( d1.y );
+ close2 = SW_FT_IS_SMALL( d2.x ) && SW_FT_IS_SMALL( d2.y );
+
+ if ( close1 )
+ {
+ if ( close2 )
+ {
+ /* basically a point; */
+ /* do nothing to retain original direction */
+ }
+ else
+ {
+ *angle_in =
+ *angle_out = SW_FT_Atan2( d2.x, d2.y );
+ }
+ }
+ else /* !close1 */
+ {
+ if ( close2 )
+ {
+ *angle_in =
+ *angle_out = SW_FT_Atan2( d1.x, d1.y );
+ }
+ else
+ {
+ *angle_in = SW_FT_Atan2( d1.x, d1.y );
+ *angle_out = SW_FT_Atan2( d2.x, d2.y );
+ }
+ }
+
+ theta = ft_pos_abs( SW_FT_Angle_Diff( *angle_in, *angle_out ) );
+
+ return SW_FT_BOOL( theta < SW_FT_SMALL_CONIC_THRESHOLD );
+ }
+
+
+ static void
+ ft_cubic_split( SW_FT_Vector* base )
+ {
+ SW_FT_Pos a, b, c, d;
+
+
+ base[6].x = base[3].x;
+ c = base[1].x;
+ d = base[2].x;
+ base[1].x = a = ( base[0].x + c ) / 2;
+ base[5].x = b = ( base[3].x + d ) / 2;
+ c = ( c + d ) / 2;
+ base[2].x = a = ( a + c ) / 2;
+ base[4].x = b = ( b + c ) / 2;
+ base[3].x = ( a + b ) / 2;
+
+ base[6].y = base[3].y;
+ c = base[1].y;
+ d = base[2].y;
+ base[1].y = a = ( base[0].y + c ) / 2;
+ base[5].y = b = ( base[3].y + d ) / 2;
+ c = ( c + d ) / 2;
+ base[2].y = a = ( a + c ) / 2;
+ base[4].y = b = ( b + c ) / 2;
+ base[3].y = ( a + b ) / 2;
+ }
+
+
+ /* Return the average of `angle1' and `angle2'. */
+ /* This gives correct result even if `angle1' and `angle2' */
+ /* have opposite signs. */
+ static SW_FT_Angle
+ ft_angle_mean( SW_FT_Angle angle1,
+ SW_FT_Angle angle2 )
+ {
+ return angle1 + SW_FT_Angle_Diff( angle1, angle2 ) / 2;
+ }
+
+
+ static SW_FT_Bool
+ ft_cubic_is_small_enough( SW_FT_Vector* base,
+ SW_FT_Angle *angle_in,
+ SW_FT_Angle *angle_mid,
+ SW_FT_Angle *angle_out )
+ {
+ SW_FT_Vector d1, d2, d3;
+ SW_FT_Angle theta1, theta2;
+ SW_FT_Int close1, close2, close3;
+
+
+ d1.x = base[2].x - base[3].x;
+ d1.y = base[2].y - base[3].y;
+ d2.x = base[1].x - base[2].x;
+ d2.y = base[1].y - base[2].y;
+ d3.x = base[0].x - base[1].x;
+ d3.y = base[0].y - base[1].y;
+
+ close1 = SW_FT_IS_SMALL( d1.x ) && SW_FT_IS_SMALL( d1.y );
+ close2 = SW_FT_IS_SMALL( d2.x ) && SW_FT_IS_SMALL( d2.y );
+ close3 = SW_FT_IS_SMALL( d3.x ) && SW_FT_IS_SMALL( d3.y );
+
+ if ( close1 )
+ {
+ if ( close2 )
+ {
+ if ( close3 )
+ {
+ /* basically a point; */
+ /* do nothing to retain original direction */
+ }
+ else /* !close3 */
+ {
+ *angle_in =
+ *angle_mid =
+ *angle_out = SW_FT_Atan2( d3.x, d3.y );
+ }
+ }
+ else /* !close2 */
+ {
+ if ( close3 )
+ {
+ *angle_in =
+ *angle_mid =
+ *angle_out = SW_FT_Atan2( d2.x, d2.y );
+ }
+ else /* !close3 */
+ {
+ *angle_in =
+ *angle_mid = SW_FT_Atan2( d2.x, d2.y );
+ *angle_out = SW_FT_Atan2( d3.x, d3.y );
+ }
+ }
+ }
+ else /* !close1 */
+ {
+ if ( close2 )
+ {
+ if ( close3 )
+ {
+ *angle_in =
+ *angle_mid =
+ *angle_out = SW_FT_Atan2( d1.x, d1.y );
+ }
+ else /* !close3 */
+ {
+ *angle_in = SW_FT_Atan2( d1.x, d1.y );
+ *angle_out = SW_FT_Atan2( d3.x, d3.y );
+ *angle_mid = ft_angle_mean( *angle_in, *angle_out );
+ }
+ }
+ else /* !close2 */
+ {
+ if ( close3 )
+ {
+ *angle_in = SW_FT_Atan2( d1.x, d1.y );
+ *angle_mid =
+ *angle_out = SW_FT_Atan2( d2.x, d2.y );
+ }
+ else /* !close3 */
+ {
+ *angle_in = SW_FT_Atan2( d1.x, d1.y );
+ *angle_mid = SW_FT_Atan2( d2.x, d2.y );
+ *angle_out = SW_FT_Atan2( d3.x, d3.y );
+ }
+ }
+ }
+
+ theta1 = ft_pos_abs( SW_FT_Angle_Diff( *angle_in, *angle_mid ) );
+ theta2 = ft_pos_abs( SW_FT_Angle_Diff( *angle_mid, *angle_out ) );
+
+ return SW_FT_BOOL( theta1 < SW_FT_SMALL_CUBIC_THRESHOLD &&
+ theta2 < SW_FT_SMALL_CUBIC_THRESHOLD );
+ }
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /***** *****/
+ /***** STROKE BORDERS *****/
+ /***** *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ typedef enum SW_FT_StrokeTags_
+ {
+ SW_FT_STROKE_TAG_ON = 1, /* on-curve point */
+ SW_FT_STROKE_TAG_CUBIC = 2, /* cubic off-point */
+ SW_FT_STROKE_TAG_BEGIN = 4, /* sub-path start */
+ SW_FT_STROKE_TAG_END = 8 /* sub-path end */
+
+ } SW_FT_StrokeTags;
+
+#define SW_FT_STROKE_TAG_BEGIN_END ( SW_FT_STROKE_TAG_BEGIN | SW_FT_STROKE_TAG_END )
+
+ typedef struct SW_FT_StrokeBorderRec_
+ {
+ SW_FT_UInt num_points;
+ SW_FT_UInt max_points;
+ SW_FT_Vector* points;
+ SW_FT_Byte* tags;
+ SW_FT_Bool movable; /* TRUE for ends of lineto borders */
+ SW_FT_Int start; /* index of current sub-path start point */
+ SW_FT_Bool valid;
+
+ } SW_FT_StrokeBorderRec, *SW_FT_StrokeBorder;
+
+
+
+ SW_FT_Error
+ SW_FT_Outline_Check( SW_FT_Outline* outline )
+ {
+ if ( outline )
+ {
+ SW_FT_Int n_points = outline->n_points;
+ SW_FT_Int n_contours = outline->n_contours;
+ SW_FT_Int end0, end;
+ SW_FT_Int n;
+
+
+ /* empty glyph? */
+ if ( n_points == 0 && n_contours == 0 )
+ return 0;
+
+ /* check point and contour counts */
+ if ( n_points <= 0 || n_contours <= 0 )
+ goto Bad;
+
+ end0 = end = -1;
+ for ( n = 0; n < n_contours; n++ )
+ {
+ end = outline->contours[n];
+
+ /* note that we don't accept empty contours */
+ if ( end <= end0 || end >= n_points )
+ goto Bad;
+
+ end0 = end;
+ }
+
+ if ( end != n_points - 1 )
+ goto Bad;
+
+ /* XXX: check the tags array */
+ return 0;
+ }
+
+ Bad:
+ return -1;//SW_FT_THROW( Invalid_Argument );
+ }
+
+
+
+ void
+ SW_FT_Outline_Get_CBox( const SW_FT_Outline* outline,
+ SW_FT_BBox *acbox )
+ {
+ SW_FT_Pos xMin, yMin, xMax, yMax;
+
+
+ if ( outline && acbox )
+ {
+ if ( outline->n_points == 0 )
+ {
+ xMin = 0;
+ yMin = 0;
+ xMax = 0;
+ yMax = 0;
+ }
+ else
+ {
+ SW_FT_Vector* vec = outline->points;
+ SW_FT_Vector* limit = vec + outline->n_points;
+
+
+ xMin = xMax = vec->x;
+ yMin = yMax = vec->y;
+ vec++;
+
+ for ( ; vec < limit; vec++ )
+ {
+ SW_FT_Pos x, y;
+
+
+ x = vec->x;
+ if ( x < xMin ) xMin = x;
+ if ( x > xMax ) xMax = x;
+
+ y = vec->y;
+ if ( y < yMin ) yMin = y;
+ if ( y > yMax ) yMax = y;
+ }
+ }
+ acbox->xMin = xMin;
+ acbox->xMax = xMax;
+ acbox->yMin = yMin;
+ acbox->yMax = yMax;
+ }
+ }
+
+
+
+ static SW_FT_Error
+ ft_stroke_border_grow( SW_FT_StrokeBorder border,
+ SW_FT_UInt new_points )
+ {
+ SW_FT_UInt old_max = border->max_points;
+ SW_FT_UInt new_max = border->num_points + new_points;
+ SW_FT_Error error = 0;
+
+
+ if ( new_max > old_max )
+ {
+ SW_FT_UInt cur_max = old_max;
+
+
+ while ( cur_max < new_max )
+ cur_max += ( cur_max >> 1 ) + 16;
+
+ border->points = (SW_FT_Vector *) realloc(border->points, cur_max * sizeof(SW_FT_Vector));
+ border->tags = (SW_FT_Byte *) realloc(border->tags, cur_max * sizeof(SW_FT_Byte));
+
+ if ( !border->points || !border->tags)
+ goto Exit;
+
+ border->max_points = cur_max;
+ }
+
+ Exit:
+ return error;
+ }
+
+
+ static void
+ ft_stroke_border_close( SW_FT_StrokeBorder border,
+ SW_FT_Bool reverse )
+ {
+ SW_FT_UInt start = border->start;
+ SW_FT_UInt count = border->num_points;
+
+
+ assert( border->start >= 0 );
+
+ /* don't record empty paths! */
+ if ( count <= start + 1U )
+ border->num_points = start;
+ else
+ {
+ /* copy the last point to the start of this sub-path, since */
+ /* it contains the `adjusted' starting coordinates */
+ border->num_points = --count;
+ border->points[start] = border->points[count];
+
+ if ( reverse )
+ {
+ /* reverse the points */
+ {
+ SW_FT_Vector* vec1 = border->points + start + 1;
+ SW_FT_Vector* vec2 = border->points + count - 1;
+
+
+ for ( ; vec1 < vec2; vec1++, vec2-- )
+ {
+ SW_FT_Vector tmp;
+
+
+ tmp = *vec1;
+ *vec1 = *vec2;
+ *vec2 = tmp;
+ }
+ }
+
+ /* then the tags */
+ {
+ SW_FT_Byte* tag1 = border->tags + start + 1;
+ SW_FT_Byte* tag2 = border->tags + count - 1;
+
+
+ for ( ; tag1 < tag2; tag1++, tag2-- )
+ {
+ SW_FT_Byte tmp;
+
+
+ tmp = *tag1;
+ *tag1 = *tag2;
+ *tag2 = tmp;
+ }
+ }
+ }
+
+ border->tags[start ] |= SW_FT_STROKE_TAG_BEGIN;
+ border->tags[count - 1] |= SW_FT_STROKE_TAG_END;
+ }
+
+ border->start = -1;
+ border->movable = FALSE;
+ }
+
+
+ static SW_FT_Error
+ ft_stroke_border_lineto( SW_FT_StrokeBorder border,
+ SW_FT_Vector* to,
+ SW_FT_Bool movable )
+ {
+ SW_FT_Error error = 0;
+
+
+ assert( border->start >= 0 );
+
+ if ( border->movable )
+ {
+ /* move last point */
+ border->points[border->num_points - 1] = *to;
+ }
+ else
+ {
+ /* don't add zero-length lineto */
+ if ( border->num_points > 0 &&
+ SW_FT_IS_SMALL( border->points[border->num_points - 1].x - to->x ) &&
+ SW_FT_IS_SMALL( border->points[border->num_points - 1].y - to->y ) )
+ return error;
+
+ /* add one point */
+ error = ft_stroke_border_grow( border, 1 );
+ if ( !error )
+ {
+ SW_FT_Vector* vec = border->points + border->num_points;
+ SW_FT_Byte* tag = border->tags + border->num_points;
+
+
+ vec[0] = *to;
+ tag[0] = SW_FT_STROKE_TAG_ON;
+
+ border->num_points += 1;
+ }
+ }
+ border->movable = movable;
+ return error;
+ }
+
+
+ static SW_FT_Error
+ ft_stroke_border_conicto( SW_FT_StrokeBorder border,
+ SW_FT_Vector* control,
+ SW_FT_Vector* to )
+ {
+ SW_FT_Error error;
+
+
+ assert( border->start >= 0 );
+
+ error = ft_stroke_border_grow( border, 2 );
+ if ( !error )
+ {
+ SW_FT_Vector* vec = border->points + border->num_points;
+ SW_FT_Byte* tag = border->tags + border->num_points;
+
+
+ vec[0] = *control;
+ vec[1] = *to;
+
+ tag[0] = 0;
+ tag[1] = SW_FT_STROKE_TAG_ON;
+
+ border->num_points += 2;
+ }
+
+ border->movable = FALSE;
+
+ return error;
+ }
+
+
+ static SW_FT_Error
+ ft_stroke_border_cubicto( SW_FT_StrokeBorder border,
+ SW_FT_Vector* control1,
+ SW_FT_Vector* control2,
+ SW_FT_Vector* to )
+ {
+ SW_FT_Error error;
+
+
+ assert( border->start >= 0 );
+
+ error = ft_stroke_border_grow( border, 3 );
+ if ( !error )
+ {
+ SW_FT_Vector* vec = border->points + border->num_points;
+ SW_FT_Byte* tag = border->tags + border->num_points;
+
+
+ vec[0] = *control1;
+ vec[1] = *control2;
+ vec[2] = *to;
+
+ tag[0] = SW_FT_STROKE_TAG_CUBIC;
+ tag[1] = SW_FT_STROKE_TAG_CUBIC;
+ tag[2] = SW_FT_STROKE_TAG_ON;
+
+ border->num_points += 3;
+ }
+
+ border->movable = FALSE;
+
+ return error;
+ }
+
+
+#define SW_FT_ARC_CUBIC_ANGLE ( SW_FT_ANGLE_PI / 2 )
+
+
+ static SW_FT_Error
+ ft_stroke_border_arcto( SW_FT_StrokeBorder border,
+ SW_FT_Vector* center,
+ SW_FT_Fixed radius,
+ SW_FT_Angle angle_start,
+ SW_FT_Angle angle_diff )
+ {
+ SW_FT_Angle total, angle, step, rotate, next, theta;
+ SW_FT_Vector a, b, a2, b2;
+ SW_FT_Fixed length;
+ SW_FT_Error error = 0;
+
+
+ /* compute start point */
+ SW_FT_Vector_From_Polar( &a, radius, angle_start );
+ a.x += center->x;
+ a.y += center->y;
+
+ total = angle_diff;
+ angle = angle_start;
+ rotate = ( angle_diff >= 0 ) ? SW_FT_ANGLE_PI2 : -SW_FT_ANGLE_PI2;
+
+ while ( total != 0 )
+ {
+ step = total;
+ if ( step > SW_FT_ARC_CUBIC_ANGLE )
+ step = SW_FT_ARC_CUBIC_ANGLE;
+
+ else if ( step < -SW_FT_ARC_CUBIC_ANGLE )
+ step = -SW_FT_ARC_CUBIC_ANGLE;
+
+ next = angle + step;
+ theta = step;
+ if ( theta < 0 )
+ theta = -theta;
+
+ theta >>= 1;
+
+ /* compute end point */
+ SW_FT_Vector_From_Polar( &b, radius, next );
+ b.x += center->x;
+ b.y += center->y;
+
+ /* compute first and second control points */
+ length = SW_FT_MulDiv( radius, SW_FT_Sin( theta ) * 4,
+ ( 0x10000L + SW_FT_Cos( theta ) ) * 3 );
+
+ SW_FT_Vector_From_Polar( &a2, length, angle + rotate );
+ a2.x += a.x;
+ a2.y += a.y;
+
+ SW_FT_Vector_From_Polar( &b2, length, next - rotate );
+ b2.x += b.x;
+ b2.y += b.y;
+
+ /* add cubic arc */
+ error = ft_stroke_border_cubicto( border, &a2, &b2, &b );
+ if ( error )
+ break;
+
+ /* process the rest of the arc ?? */
+ a = b;
+ total -= step;
+ angle = next;
+ }
+
+ return error;
+ }
+
+
+ static SW_FT_Error
+ ft_stroke_border_moveto( SW_FT_StrokeBorder border,
+ SW_FT_Vector* to )
+ {
+ /* close current open path if any ? */
+ if ( border->start >= 0 )
+ ft_stroke_border_close( border, FALSE );
+
+ border->start = border->num_points;
+ border->movable = FALSE;
+
+ return ft_stroke_border_lineto( border, to, FALSE );
+ }
+
+
+ static void
+ ft_stroke_border_init( SW_FT_StrokeBorder border)
+ {
+ border->points = NULL;
+ border->tags = NULL;
+
+ border->num_points = 0;
+ border->max_points = 0;
+ border->start = -1;
+ border->valid = FALSE;
+ }
+
+
+ static void
+ ft_stroke_border_reset( SW_FT_StrokeBorder border )
+ {
+ border->num_points = 0;
+ border->start = -1;
+ border->valid = FALSE;
+ }
+
+
+ static void
+ ft_stroke_border_done( SW_FT_StrokeBorder border )
+ {
+
+ free( border->points );
+ free( border->tags );
+
+ border->num_points = 0;
+ border->max_points = 0;
+ border->start = -1;
+ border->valid = FALSE;
+ }
+
+
+ static SW_FT_Error
+ ft_stroke_border_get_counts( SW_FT_StrokeBorder border,
+ SW_FT_UInt *anum_points,
+ SW_FT_UInt *anum_contours )
+ {
+ SW_FT_Error error = 0;
+ SW_FT_UInt num_points = 0;
+ SW_FT_UInt num_contours = 0;
+
+ SW_FT_UInt count = border->num_points;
+ SW_FT_Vector* point = border->points;
+ SW_FT_Byte* tags = border->tags;
+ SW_FT_Int in_contour = 0;
+
+
+ for ( ; count > 0; count--, num_points++, point++, tags++ )
+ {
+ if ( tags[0] & SW_FT_STROKE_TAG_BEGIN )
+ {
+ if ( in_contour != 0 )
+ goto Fail;
+
+ in_contour = 1;
+ }
+ else if ( in_contour == 0 )
+ goto Fail;
+
+ if ( tags[0] & SW_FT_STROKE_TAG_END )
+ {
+ in_contour = 0;
+ num_contours++;
+ }
+ }
+
+ if ( in_contour != 0 )
+ goto Fail;
+
+ border->valid = TRUE;
+
+ Exit:
+ *anum_points = num_points;
+ *anum_contours = num_contours;
+ return error;
+
+ Fail:
+ num_points = 0;
+ num_contours = 0;
+ goto Exit;
+ }
+
+
+ static void
+ ft_stroke_border_export( SW_FT_StrokeBorder border,
+ SW_FT_Outline* outline )
+ {
+ /* copy point locations */
+ memcpy( outline->points + outline->n_points,
+ border->points,
+ border->num_points * sizeof(SW_FT_Vector));
+
+ /* copy tags */
+ {
+ SW_FT_UInt count = border->num_points;
+ SW_FT_Byte* read = border->tags;
+ SW_FT_Byte* write = (SW_FT_Byte*)outline->tags + outline->n_points;
+
+
+ for ( ; count > 0; count--, read++, write++ )
+ {
+ if ( *read & SW_FT_STROKE_TAG_ON )
+ *write = SW_FT_CURVE_TAG_ON;
+ else if ( *read & SW_FT_STROKE_TAG_CUBIC )
+ *write = SW_FT_CURVE_TAG_CUBIC;
+ else
+ *write = SW_FT_CURVE_TAG_CONIC;
+ }
+ }
+
+ /* copy contours */
+ {
+ SW_FT_UInt count = border->num_points;
+ SW_FT_Byte* tags = border->tags;
+ SW_FT_Short* write = outline->contours + outline->n_contours;
+ SW_FT_Short idx = (SW_FT_Short)outline->n_points;
+
+
+ for ( ; count > 0; count--, tags++, idx++ )
+ {
+ if ( *tags & SW_FT_STROKE_TAG_END )
+ {
+ *write++ = idx;
+ outline->n_contours++;
+ }
+ }
+ }
+
+ outline->n_points = (short)( outline->n_points + border->num_points );
+
+ assert( SW_FT_Outline_Check( outline ) == 0 );
+ }
+
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /***** *****/
+ /***** STROKER *****/
+ /***** *****/
+ /*************************************************************************/
+ /*************************************************************************/
+
+#define SW_FT_SIDE_TO_ROTATE( s ) ( SW_FT_ANGLE_PI2 - (s) * SW_FT_ANGLE_PI )
+
+ typedef struct SW_FT_StrokerRec_
+ {
+ SW_FT_Angle angle_in; /* direction into curr join */
+ SW_FT_Angle angle_out; /* direction out of join */
+ SW_FT_Vector center; /* current position */
+ SW_FT_Fixed line_length; /* length of last lineto */
+ SW_FT_Bool first_point; /* is this the start? */
+ SW_FT_Bool subpath_open; /* is the subpath open? */
+ SW_FT_Angle subpath_angle; /* subpath start direction */
+ SW_FT_Vector subpath_start; /* subpath start position */
+ SW_FT_Fixed subpath_line_length; /* subpath start lineto len */
+ SW_FT_Bool handle_wide_strokes; /* use wide strokes logic? */
+
+ SW_FT_Stroker_LineCap line_cap;
+ SW_FT_Stroker_LineJoin line_join;
+ SW_FT_Stroker_LineJoin line_join_saved;
+ SW_FT_Fixed miter_limit;
+ SW_FT_Fixed radius;
+
+ SW_FT_StrokeBorderRec borders[2];
+ } SW_FT_StrokerRec;
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_New( SW_FT_Stroker *astroker )
+ {
+ SW_FT_Error error = 0; /* assigned in SW_FT_NEW */
+ SW_FT_Stroker stroker = NULL;
+
+
+ stroker = (SW_FT_StrokerRec *) calloc(1, sizeof(SW_FT_StrokerRec));
+ if ( stroker )
+ {
+
+ ft_stroke_border_init( &stroker->borders[0]);
+ ft_stroke_border_init( &stroker->borders[1]);
+ }
+
+ *astroker = stroker;
+
+ return error;
+ }
+
+ void
+ SW_FT_Stroker_Rewind( SW_FT_Stroker stroker )
+ {
+ if ( stroker )
+ {
+ ft_stroke_border_reset( &stroker->borders[0] );
+ ft_stroke_border_reset( &stroker->borders[1] );
+ }
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ void
+ SW_FT_Stroker_Set( SW_FT_Stroker stroker,
+ SW_FT_Fixed radius,
+ SW_FT_Stroker_LineCap line_cap,
+ SW_FT_Stroker_LineJoin line_join,
+ SW_FT_Fixed miter_limit )
+ {
+ stroker->radius = radius;
+ stroker->line_cap = line_cap;
+ stroker->line_join = line_join;
+ stroker->miter_limit = miter_limit;
+
+ /* ensure miter limit has sensible value */
+ if ( stroker->miter_limit < 0x10000 )
+ stroker->miter_limit = 0x10000;
+
+ /* save line join style: */
+ /* line join style can be temporarily changed when stroking curves */
+ stroker->line_join_saved = line_join;
+
+ SW_FT_Stroker_Rewind( stroker );
+ }
+
+ /* documentation is in ftstroke.h */
+
+ void
+ SW_FT_Stroker_Done( SW_FT_Stroker stroker )
+ {
+ if ( stroker )
+ {
+
+ ft_stroke_border_done( &stroker->borders[0] );
+ ft_stroke_border_done( &stroker->borders[1] );
+
+ free( stroker );
+ }
+ }
+
+
+ /* create a circular arc at a corner or cap */
+ static SW_FT_Error
+ ft_stroker_arcto( SW_FT_Stroker stroker,
+ SW_FT_Int side )
+ {
+ SW_FT_Angle total, rotate;
+ SW_FT_Fixed radius = stroker->radius;
+ SW_FT_Error error = 0;
+ SW_FT_StrokeBorder border = stroker->borders + side;
+
+
+ rotate = SW_FT_SIDE_TO_ROTATE( side );
+
+ total = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out );
+ if ( total == SW_FT_ANGLE_PI )
+ total = -rotate * 2;
+
+ error = ft_stroke_border_arcto( border,
+ &stroker->center,
+ radius,
+ stroker->angle_in + rotate,
+ total );
+ border->movable = FALSE;
+ return error;
+ }
+
+
+ /* add a cap at the end of an opened path */
+ static SW_FT_Error
+ ft_stroker_cap( SW_FT_Stroker stroker,
+ SW_FT_Angle angle,
+ SW_FT_Int side )
+ {
+ SW_FT_Error error = 0;
+
+
+ if ( stroker->line_cap == SW_FT_STROKER_LINECAP_ROUND )
+ {
+ /* add a round cap */
+ stroker->angle_in = angle;
+ stroker->angle_out = angle + SW_FT_ANGLE_PI;
+
+ error = ft_stroker_arcto( stroker, side );
+ }
+ else if ( stroker->line_cap == SW_FT_STROKER_LINECAP_SQUARE )
+ {
+ /* add a square cap */
+ SW_FT_Vector delta, delta2;
+ SW_FT_Angle rotate = SW_FT_SIDE_TO_ROTATE( side );
+ SW_FT_Fixed radius = stroker->radius;
+ SW_FT_StrokeBorder border = stroker->borders + side;
+
+
+ SW_FT_Vector_From_Polar( &delta2, radius, angle + rotate );
+ SW_FT_Vector_From_Polar( &delta, radius, angle );
+
+ delta.x += stroker->center.x + delta2.x;
+ delta.y += stroker->center.y + delta2.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+
+ SW_FT_Vector_From_Polar( &delta2, radius, angle - rotate );
+ SW_FT_Vector_From_Polar( &delta, radius, angle );
+
+ delta.x += delta2.x + stroker->center.x;
+ delta.y += delta2.y + stroker->center.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ }
+ else if ( stroker->line_cap == SW_FT_STROKER_LINECAP_BUTT )
+ {
+ /* add a butt ending */
+ SW_FT_Vector delta;
+ SW_FT_Angle rotate = SW_FT_SIDE_TO_ROTATE( side );
+ SW_FT_Fixed radius = stroker->radius;
+ SW_FT_StrokeBorder border = stroker->borders + side;
+
+
+ SW_FT_Vector_From_Polar( &delta, radius, angle + rotate );
+
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+
+ SW_FT_Vector_From_Polar( &delta, radius, angle - rotate );
+
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ }
+
+ Exit:
+ return error;
+ }
+
+
+ /* process an inside corner, i.e. compute intersection */
+ static SW_FT_Error
+ ft_stroker_inside( SW_FT_Stroker stroker,
+ SW_FT_Int side,
+ SW_FT_Fixed line_length )
+ {
+ SW_FT_StrokeBorder border = stroker->borders + side;
+ SW_FT_Angle phi, theta, rotate;
+ SW_FT_Fixed length, thcos;
+ SW_FT_Vector delta;
+ SW_FT_Error error = 0;
+ SW_FT_Bool intersect; /* use intersection of lines? */
+
+
+ rotate = SW_FT_SIDE_TO_ROTATE( side );
+
+ theta = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out ) / 2;
+
+ /* Only intersect borders if between two lineto's and both */
+ /* lines are long enough (line_length is zero for curves). */
+ if ( !border->movable || line_length == 0 )
+ intersect = FALSE;
+ else
+ {
+ /* compute minimum required length of lines */
+ SW_FT_Fixed min_length = ft_pos_abs( SW_FT_MulFix( stroker->radius,
+ SW_FT_Tan( theta ) ) );
+
+
+ intersect = SW_FT_BOOL( stroker->line_length >= min_length &&
+ line_length >= min_length );
+ }
+
+ if ( !intersect )
+ {
+ SW_FT_Vector_From_Polar( &delta, stroker->radius,
+ stroker->angle_out + rotate );
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ border->movable = FALSE;
+ }
+ else
+ {
+ /* compute median angle */
+ phi = stroker->angle_in + theta;
+
+ thcos = SW_FT_Cos( theta );
+
+ length = SW_FT_DivFix( stroker->radius, thcos );
+
+ SW_FT_Vector_From_Polar( &delta, length, phi + rotate );
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+ }
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+
+ return error;
+ }
+
+
+ /* process an outside corner, i.e. compute bevel/miter/round */
+ static SW_FT_Error
+ ft_stroker_outside( SW_FT_Stroker stroker,
+ SW_FT_Int side,
+ SW_FT_Fixed line_length )
+ {
+ SW_FT_StrokeBorder border = stroker->borders + side;
+ SW_FT_Error error;
+ SW_FT_Angle rotate;
+
+
+ if ( stroker->line_join == SW_FT_STROKER_LINEJOIN_ROUND )
+ error = ft_stroker_arcto( stroker, side );
+ else
+ {
+ /* this is a mitered (pointed) or beveled (truncated) corner */
+ SW_FT_Fixed sigma = 0, radius = stroker->radius;
+ SW_FT_Angle theta = 0, phi = 0;
+ SW_FT_Fixed thcos = 0;
+ SW_FT_Bool bevel, fixed_bevel;
+
+
+ rotate = SW_FT_SIDE_TO_ROTATE( side );
+
+ bevel =
+ SW_FT_BOOL( stroker->line_join == SW_FT_STROKER_LINEJOIN_BEVEL );
+
+ fixed_bevel =
+ SW_FT_BOOL( stroker->line_join != SW_FT_STROKER_LINEJOIN_MITER_VARIABLE );
+
+ if ( !bevel )
+ {
+ theta = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out );
+
+ if ( theta == SW_FT_ANGLE_PI )
+ {
+ theta = rotate;
+ phi = stroker->angle_in;
+ }
+ else
+ {
+ theta /= 2;
+ phi = stroker->angle_in + theta + rotate;
+ }
+
+ thcos = SW_FT_Cos( theta );
+ sigma = SW_FT_MulFix( stroker->miter_limit, thcos );
+
+ /* is miter limit exceeded? */
+ if ( sigma < 0x10000L )
+ {
+ /* don't create variable bevels for very small deviations; */
+ /* SW_FT_Sin(x) = 0 for x <= 57 */
+ if ( fixed_bevel || ft_pos_abs( theta ) > 57 )
+ bevel = TRUE;
+ }
+ }
+
+ if ( bevel ) /* this is a bevel (broken angle) */
+ {
+ if ( fixed_bevel )
+ {
+ /* the outer corners are simply joined together */
+ SW_FT_Vector delta;
+
+
+ /* add bevel */
+ SW_FT_Vector_From_Polar( &delta,
+ radius,
+ stroker->angle_out + rotate );
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ border->movable = FALSE;
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ }
+ else /* variable bevel */
+ {
+ /* the miter is truncated */
+ SW_FT_Vector middle, delta;
+ SW_FT_Fixed length;
+
+
+ /* compute middle point */
+ SW_FT_Vector_From_Polar( &middle,
+ SW_FT_MulFix( radius, stroker->miter_limit ),
+ phi );
+ middle.x += stroker->center.x;
+ middle.y += stroker->center.y;
+
+ /* compute first angle point */
+ length = SW_FT_MulDiv( radius, 0x10000L - sigma,
+ ft_pos_abs( SW_FT_Sin( theta ) ) );
+
+ SW_FT_Vector_From_Polar( &delta, length, phi + rotate );
+ delta.x += middle.x;
+ delta.y += middle.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+
+ /* compute second angle point */
+ SW_FT_Vector_From_Polar( &delta, length, phi - rotate );
+ delta.x += middle.x;
+ delta.y += middle.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+
+ /* finally, add an end point; only needed if not lineto */
+ /* (line_length is zero for curves) */
+ if ( line_length == 0 )
+ {
+ SW_FT_Vector_From_Polar( &delta,
+ radius,
+ stroker->angle_out + rotate );
+
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ }
+ }
+ }
+ else /* this is a miter (intersection) */
+ {
+ SW_FT_Fixed length;
+ SW_FT_Vector delta;
+
+
+ length = SW_FT_DivFix( stroker->radius, thcos );
+
+ SW_FT_Vector_From_Polar( &delta, length, phi );
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+
+ /* now add an end point; only needed if not lineto */
+ /* (line_length is zero for curves) */
+ if ( line_length == 0 )
+ {
+ SW_FT_Vector_From_Polar( &delta,
+ stroker->radius,
+ stroker->angle_out + rotate );
+ delta.x += stroker->center.x;
+ delta.y += stroker->center.y;
+
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ }
+ }
+ }
+
+ Exit:
+ return error;
+ }
+
+
+ static SW_FT_Error
+ ft_stroker_process_corner( SW_FT_Stroker stroker,
+ SW_FT_Fixed line_length )
+ {
+ SW_FT_Error error = 0;
+ SW_FT_Angle turn;
+ SW_FT_Int inside_side;
+
+
+ turn = SW_FT_Angle_Diff( stroker->angle_in, stroker->angle_out );
+
+ /* no specific corner processing is required if the turn is 0 */
+ if ( turn == 0 )
+ goto Exit;
+
+ /* when we turn to the right, the inside side is 0 */
+ inside_side = 0;
+
+ /* otherwise, the inside side is 1 */
+ if ( turn < 0 )
+ inside_side = 1;
+
+ /* process the inside side */
+ error = ft_stroker_inside( stroker, inside_side, line_length );
+ if ( error )
+ goto Exit;
+
+ /* process the outside side */
+ error = ft_stroker_outside( stroker, 1 - inside_side, line_length );
+
+ Exit:
+ return error;
+ }
+
+
+ /* add two points to the left and right borders corresponding to the */
+ /* start of the subpath */
+ static SW_FT_Error
+ ft_stroker_subpath_start( SW_FT_Stroker stroker,
+ SW_FT_Angle start_angle,
+ SW_FT_Fixed line_length )
+ {
+ SW_FT_Vector delta;
+ SW_FT_Vector point;
+ SW_FT_Error error;
+ SW_FT_StrokeBorder border;
+
+
+ SW_FT_Vector_From_Polar( &delta, stroker->radius,
+ start_angle + SW_FT_ANGLE_PI2 );
+
+ point.x = stroker->center.x + delta.x;
+ point.y = stroker->center.y + delta.y;
+
+ border = stroker->borders;
+ error = ft_stroke_border_moveto( border, &point );
+ if ( error )
+ goto Exit;
+
+ point.x = stroker->center.x - delta.x;
+ point.y = stroker->center.y - delta.y;
+
+ border++;
+ error = ft_stroke_border_moveto( border, &point );
+
+ /* save angle, position, and line length for last join */
+ /* (line_length is zero for curves) */
+ stroker->subpath_angle = start_angle;
+ stroker->first_point = FALSE;
+ stroker->subpath_line_length = line_length;
+
+ Exit:
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_LineTo( SW_FT_Stroker stroker,
+ SW_FT_Vector* to )
+ {
+ SW_FT_Error error = 0;
+ SW_FT_StrokeBorder border;
+ SW_FT_Vector delta;
+ SW_FT_Angle angle;
+ SW_FT_Int side;
+ SW_FT_Fixed line_length;
+
+
+ delta.x = to->x - stroker->center.x;
+ delta.y = to->y - stroker->center.y;
+
+ /* a zero-length lineto is a no-op; avoid creating a spurious corner */
+ if ( delta.x == 0 && delta.y == 0 )
+ goto Exit;
+
+ /* compute length of line */
+ line_length = SW_FT_Vector_Length( &delta );
+
+ angle = SW_FT_Atan2( delta.x, delta.y );
+ SW_FT_Vector_From_Polar( &delta, stroker->radius, angle + SW_FT_ANGLE_PI2 );
+
+ /* process corner if necessary */
+ if ( stroker->first_point )
+ {
+ /* This is the first segment of a subpath. We need to */
+ /* add a point to each border at their respective starting */
+ /* point locations. */
+ error = ft_stroker_subpath_start( stroker, angle, line_length );
+ if ( error )
+ goto Exit;
+ }
+ else
+ {
+ /* process the current corner */
+ stroker->angle_out = angle;
+ error = ft_stroker_process_corner( stroker, line_length );
+ if ( error )
+ goto Exit;
+ }
+
+ /* now add a line segment to both the `inside' and `outside' paths */
+ for ( border = stroker->borders, side = 1; side >= 0; side--, border++ )
+ {
+ SW_FT_Vector point;
+
+
+ point.x = to->x + delta.x;
+ point.y = to->y + delta.y;
+
+ /* the ends of lineto borders are movable */
+ error = ft_stroke_border_lineto( border, &point, TRUE );
+ if ( error )
+ goto Exit;
+
+ delta.x = -delta.x;
+ delta.y = -delta.y;
+ }
+
+ stroker->angle_in = angle;
+ stroker->center = *to;
+ stroker->line_length = line_length;
+
+ Exit:
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_ConicTo( SW_FT_Stroker stroker,
+ SW_FT_Vector* control,
+ SW_FT_Vector* to )
+ {
+ SW_FT_Error error = 0;
+ SW_FT_Vector bez_stack[34];
+ SW_FT_Vector* arc;
+ SW_FT_Vector* limit = bez_stack + 30;
+ SW_FT_Bool first_arc = TRUE;
+
+
+ /* if all control points are coincident, this is a no-op; */
+ /* avoid creating a spurious corner */
+ if ( SW_FT_IS_SMALL( stroker->center.x - control->x ) &&
+ SW_FT_IS_SMALL( stroker->center.y - control->y ) &&
+ SW_FT_IS_SMALL( control->x - to->x ) &&
+ SW_FT_IS_SMALL( control->y - to->y ) )
+ {
+ stroker->center = *to;
+ goto Exit;
+ }
+
+ arc = bez_stack;
+ arc[0] = *to;
+ arc[1] = *control;
+ arc[2] = stroker->center;
+
+ while ( arc >= bez_stack )
+ {
+ SW_FT_Angle angle_in, angle_out;
+
+
+ /* initialize with current direction */
+ angle_in = angle_out = stroker->angle_in;
+
+ if ( arc < limit &&
+ !ft_conic_is_small_enough( arc, &angle_in, &angle_out ) )
+ {
+ if ( stroker->first_point )
+ stroker->angle_in = angle_in;
+
+ ft_conic_split( arc );
+ arc += 2;
+ continue;
+ }
+
+ if ( first_arc )
+ {
+ first_arc = FALSE;
+
+ /* process corner if necessary */
+ if ( stroker->first_point )
+ error = ft_stroker_subpath_start( stroker, angle_in, 0 );
+ else
+ {
+ stroker->angle_out = angle_in;
+ error = ft_stroker_process_corner( stroker, 0 );
+ }
+ }
+ else if ( ft_pos_abs( SW_FT_Angle_Diff( stroker->angle_in, angle_in ) ) >
+ SW_FT_SMALL_CONIC_THRESHOLD / 4 )
+ {
+ /* if the deviation from one arc to the next is too great, */
+ /* add a round corner */
+ stroker->center = arc[2];
+ stroker->angle_out = angle_in;
+ stroker->line_join = SW_FT_STROKER_LINEJOIN_ROUND;
+
+ error = ft_stroker_process_corner( stroker, 0 );
+
+ /* reinstate line join style */
+ stroker->line_join = stroker->line_join_saved;
+ }
+
+ if ( error )
+ goto Exit;
+
+ /* the arc's angle is small enough; we can add it directly to each */
+ /* border */
+ {
+ SW_FT_Vector ctrl, end;
+ SW_FT_Angle theta, phi, rotate, alpha0 = 0;
+ SW_FT_Fixed length;
+ SW_FT_StrokeBorder border;
+ SW_FT_Int side;
+
+
+ theta = SW_FT_Angle_Diff( angle_in, angle_out ) / 2;
+ phi = angle_in + theta;
+ length = SW_FT_DivFix( stroker->radius, SW_FT_Cos( theta ) );
+
+ /* compute direction of original arc */
+ if ( stroker->handle_wide_strokes )
+ alpha0 = SW_FT_Atan2( arc[0].x - arc[2].x, arc[0].y - arc[2].y );
+
+ for ( border = stroker->borders, side = 0;
+ side <= 1;
+ side++, border++ )
+ {
+ rotate = SW_FT_SIDE_TO_ROTATE( side );
+
+ /* compute control point */
+ SW_FT_Vector_From_Polar( &ctrl, length, phi + rotate );
+ ctrl.x += arc[1].x;
+ ctrl.y += arc[1].y;
+
+ /* compute end point */
+ SW_FT_Vector_From_Polar( &end, stroker->radius, angle_out + rotate );
+ end.x += arc[0].x;
+ end.y += arc[0].y;
+
+ if ( stroker->handle_wide_strokes )
+ {
+ SW_FT_Vector start;
+ SW_FT_Angle alpha1;
+
+
+ /* determine whether the border radius is greater than the */
+ /* radius of curvature of the original arc */
+ start = border->points[border->num_points - 1];
+
+ alpha1 = SW_FT_Atan2( end.x - start.x, end.y - start.y );
+
+ /* is the direction of the border arc opposite to */
+ /* that of the original arc? */
+ if ( ft_pos_abs( SW_FT_Angle_Diff( alpha0, alpha1 ) ) >
+ SW_FT_ANGLE_PI / 2 )
+ {
+ SW_FT_Angle beta, gamma;
+ SW_FT_Vector bvec, delta;
+ SW_FT_Fixed blen, sinA, sinB, alen;
+
+
+ /* use the sine rule to find the intersection point */
+ beta = SW_FT_Atan2( arc[2].x - start.x, arc[2].y - start.y );
+ gamma = SW_FT_Atan2( arc[0].x - end.x, arc[0].y - end.y );
+
+ bvec.x = end.x - start.x;
+ bvec.y = end.y - start.y;
+
+ blen = SW_FT_Vector_Length( &bvec );
+
+ sinA = ft_pos_abs( SW_FT_Sin( alpha1 - gamma ) );
+ sinB = ft_pos_abs( SW_FT_Sin( beta - gamma ) );
+
+ alen = SW_FT_MulDiv( blen, sinA, sinB );
+
+ SW_FT_Vector_From_Polar( &delta, alen, beta );
+ delta.x += start.x;
+ delta.y += start.y;
+
+ /* circumnavigate the negative sector backwards */
+ border->movable = FALSE;
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+ error = ft_stroke_border_lineto( border, &end, FALSE );
+ if ( error )
+ goto Exit;
+ error = ft_stroke_border_conicto( border, &ctrl, &start );
+ if ( error )
+ goto Exit;
+ /* and then move to the endpoint */
+ error = ft_stroke_border_lineto( border, &end, FALSE );
+ if ( error )
+ goto Exit;
+
+ continue;
+ }
+
+ /* else fall through */
+ }
+
+ /* simply add an arc */
+ error = ft_stroke_border_conicto( border, &ctrl, &end );
+ if ( error )
+ goto Exit;
+ }
+ }
+
+ arc -= 2;
+
+ stroker->angle_in = angle_out;
+ }
+
+ stroker->center = *to;
+
+ Exit:
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_CubicTo( SW_FT_Stroker stroker,
+ SW_FT_Vector* control1,
+ SW_FT_Vector* control2,
+ SW_FT_Vector* to )
+ {
+ SW_FT_Error error = 0;
+ SW_FT_Vector bez_stack[37];
+ SW_FT_Vector* arc;
+ SW_FT_Vector* limit = bez_stack + 32;
+ SW_FT_Bool first_arc = TRUE;
+
+
+ /* if all control points are coincident, this is a no-op; */
+ /* avoid creating a spurious corner */
+ if ( SW_FT_IS_SMALL( stroker->center.x - control1->x ) &&
+ SW_FT_IS_SMALL( stroker->center.y - control1->y ) &&
+ SW_FT_IS_SMALL( control1->x - control2->x ) &&
+ SW_FT_IS_SMALL( control1->y - control2->y ) &&
+ SW_FT_IS_SMALL( control2->x - to->x ) &&
+ SW_FT_IS_SMALL( control2->y - to->y ) )
+ {
+ stroker->center = *to;
+ goto Exit;
+ }
+
+ arc = bez_stack;
+ arc[0] = *to;
+ arc[1] = *control2;
+ arc[2] = *control1;
+ arc[3] = stroker->center;
+
+ while ( arc >= bez_stack )
+ {
+ SW_FT_Angle angle_in, angle_mid, angle_out;
+
+
+ /* initialize with current direction */
+ angle_in = angle_out = angle_mid = stroker->angle_in;
+
+ if ( arc < limit &&
+ !ft_cubic_is_small_enough( arc, &angle_in,
+ &angle_mid, &angle_out ) )
+ {
+ if ( stroker->first_point )
+ stroker->angle_in = angle_in;
+
+ ft_cubic_split( arc );
+ arc += 3;
+ continue;
+ }
+
+ if ( first_arc )
+ {
+ first_arc = FALSE;
+
+ /* process corner if necessary */
+ if ( stroker->first_point )
+ error = ft_stroker_subpath_start( stroker, angle_in, 0 );
+ else
+ {
+ stroker->angle_out = angle_in;
+ error = ft_stroker_process_corner( stroker, 0 );
+ }
+ }
+ else if ( ft_pos_abs( SW_FT_Angle_Diff( stroker->angle_in, angle_in ) ) >
+ SW_FT_SMALL_CUBIC_THRESHOLD / 4 )
+ {
+ /* if the deviation from one arc to the next is too great, */
+ /* add a round corner */
+ stroker->center = arc[3];
+ stroker->angle_out = angle_in;
+ stroker->line_join = SW_FT_STROKER_LINEJOIN_ROUND;
+
+ error = ft_stroker_process_corner( stroker, 0 );
+
+ /* reinstate line join style */
+ stroker->line_join = stroker->line_join_saved;
+ }
+
+ if ( error )
+ goto Exit;
+
+ /* the arc's angle is small enough; we can add it directly to each */
+ /* border */
+ {
+ SW_FT_Vector ctrl1, ctrl2, end;
+ SW_FT_Angle theta1, phi1, theta2, phi2, rotate, alpha0 = 0;
+ SW_FT_Fixed length1, length2;
+ SW_FT_StrokeBorder border;
+ SW_FT_Int side;
+
+
+ theta1 = SW_FT_Angle_Diff( angle_in, angle_mid ) / 2;
+ theta2 = SW_FT_Angle_Diff( angle_mid, angle_out ) / 2;
+ phi1 = ft_angle_mean( angle_in, angle_mid );
+ phi2 = ft_angle_mean( angle_mid, angle_out );
+ length1 = SW_FT_DivFix( stroker->radius, SW_FT_Cos( theta1 ) );
+ length2 = SW_FT_DivFix( stroker->radius, SW_FT_Cos( theta2 ) );
+
+ /* compute direction of original arc */
+ if ( stroker->handle_wide_strokes )
+ alpha0 = SW_FT_Atan2( arc[0].x - arc[3].x, arc[0].y - arc[3].y );
+
+ for ( border = stroker->borders, side = 0;
+ side <= 1;
+ side++, border++ )
+ {
+ rotate = SW_FT_SIDE_TO_ROTATE( side );
+
+ /* compute control points */
+ SW_FT_Vector_From_Polar( &ctrl1, length1, phi1 + rotate );
+ ctrl1.x += arc[2].x;
+ ctrl1.y += arc[2].y;
+
+ SW_FT_Vector_From_Polar( &ctrl2, length2, phi2 + rotate );
+ ctrl2.x += arc[1].x;
+ ctrl2.y += arc[1].y;
+
+ /* compute end point */
+ SW_FT_Vector_From_Polar( &end, stroker->radius, angle_out + rotate );
+ end.x += arc[0].x;
+ end.y += arc[0].y;
+
+ if ( stroker->handle_wide_strokes )
+ {
+ SW_FT_Vector start;
+ SW_FT_Angle alpha1;
+
+
+ /* determine whether the border radius is greater than the */
+ /* radius of curvature of the original arc */
+ start = border->points[border->num_points - 1];
+
+ alpha1 = SW_FT_Atan2( end.x - start.x, end.y - start.y );
+
+ /* is the direction of the border arc opposite to */
+ /* that of the original arc? */
+ if ( ft_pos_abs( SW_FT_Angle_Diff( alpha0, alpha1 ) ) >
+ SW_FT_ANGLE_PI / 2 )
+ {
+ SW_FT_Angle beta, gamma;
+ SW_FT_Vector bvec, delta;
+ SW_FT_Fixed blen, sinA, sinB, alen;
+
+
+ /* use the sine rule to find the intersection point */
+ beta = SW_FT_Atan2( arc[3].x - start.x, arc[3].y - start.y );
+ gamma = SW_FT_Atan2( arc[0].x - end.x, arc[0].y - end.y );
+
+ bvec.x = end.x - start.x;
+ bvec.y = end.y - start.y;
+
+ blen = SW_FT_Vector_Length( &bvec );
+
+ sinA = ft_pos_abs( SW_FT_Sin( alpha1 - gamma ) );
+ sinB = ft_pos_abs( SW_FT_Sin( beta - gamma ) );
+
+ alen = SW_FT_MulDiv( blen, sinA, sinB );
+
+ SW_FT_Vector_From_Polar( &delta, alen, beta );
+ delta.x += start.x;
+ delta.y += start.y;
+
+ /* circumnavigate the negative sector backwards */
+ border->movable = FALSE;
+ error = ft_stroke_border_lineto( border, &delta, FALSE );
+ if ( error )
+ goto Exit;
+ error = ft_stroke_border_lineto( border, &end, FALSE );
+ if ( error )
+ goto Exit;
+ error = ft_stroke_border_cubicto( border,
+ &ctrl2,
+ &ctrl1,
+ &start );
+ if ( error )
+ goto Exit;
+ /* and then move to the endpoint */
+ error = ft_stroke_border_lineto( border, &end, FALSE );
+ if ( error )
+ goto Exit;
+
+ continue;
+ }
+
+ /* else fall through */
+ }
+
+ /* simply add an arc */
+ error = ft_stroke_border_cubicto( border, &ctrl1, &ctrl2, &end );
+ if ( error )
+ goto Exit;
+ }
+ }
+
+ arc -= 3;
+
+ stroker->angle_in = angle_out;
+ }
+
+ stroker->center = *to;
+
+ Exit:
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_BeginSubPath( SW_FT_Stroker stroker,
+ SW_FT_Vector* to,
+ SW_FT_Bool open )
+ {
+ /* We cannot process the first point, because there is not enough */
+ /* information regarding its corner/cap. The latter will be processed */
+ /* in the `SW_FT_Stroker_EndSubPath' routine. */
+ /* */
+ stroker->first_point = TRUE;
+ stroker->center = *to;
+ stroker->subpath_open = open;
+
+ /* Determine if we need to check whether the border radius is greater */
+ /* than the radius of curvature of a curve, to handle this case */
+ /* specially. This is only required if bevel joins or butt caps may */
+ /* be created, because round & miter joins and round & square caps */
+ /* cover the negative sector created with wide strokes. */
+ stroker->handle_wide_strokes =
+ SW_FT_BOOL( stroker->line_join != SW_FT_STROKER_LINEJOIN_ROUND ||
+ ( stroker->subpath_open &&
+ stroker->line_cap == SW_FT_STROKER_LINECAP_BUTT ) );
+
+ /* record the subpath start point for each border */
+ stroker->subpath_start = *to;
+
+ stroker->angle_in = 0;
+
+ return 0;
+ }
+
+
+ static SW_FT_Error
+ ft_stroker_add_reverse_left( SW_FT_Stroker stroker,
+ SW_FT_Bool open )
+ {
+ SW_FT_StrokeBorder right = stroker->borders + 0;
+ SW_FT_StrokeBorder left = stroker->borders + 1;
+ SW_FT_Int new_points;
+ SW_FT_Error error = 0;
+
+
+ assert( left->start >= 0 );
+
+ new_points = left->num_points - left->start;
+ if ( new_points > 0 )
+ {
+ error = ft_stroke_border_grow( right, (SW_FT_UInt)new_points );
+ if ( error )
+ goto Exit;
+
+ {
+ SW_FT_Vector* dst_point = right->points + right->num_points;
+ SW_FT_Byte* dst_tag = right->tags + right->num_points;
+ SW_FT_Vector* src_point = left->points + left->num_points - 1;
+ SW_FT_Byte* src_tag = left->tags + left->num_points - 1;
+
+
+ while ( src_point >= left->points + left->start )
+ {
+ *dst_point = *src_point;
+ *dst_tag = *src_tag;
+
+ if ( open )
+ dst_tag[0] &= ~SW_FT_STROKE_TAG_BEGIN_END;
+ else
+ {
+ SW_FT_Byte ttag =
+ (SW_FT_Byte)( dst_tag[0] & SW_FT_STROKE_TAG_BEGIN_END );
+
+
+ /* switch begin/end tags if necessary */
+ if ( ttag == SW_FT_STROKE_TAG_BEGIN ||
+ ttag == SW_FT_STROKE_TAG_END )
+ dst_tag[0] ^= SW_FT_STROKE_TAG_BEGIN_END;
+ }
+
+ src_point--;
+ src_tag--;
+ dst_point++;
+ dst_tag++;
+ }
+ }
+
+ left->num_points = left->start;
+ right->num_points += new_points;
+
+ right->movable = FALSE;
+ left->movable = FALSE;
+ }
+
+ Exit:
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ /* there's a lot of magic in this function! */
+ SW_FT_Error
+ SW_FT_Stroker_EndSubPath( SW_FT_Stroker stroker )
+ {
+ SW_FT_Error error = 0;
+
+
+ if ( stroker->subpath_open )
+ {
+ SW_FT_StrokeBorder right = stroker->borders;
+
+
+ /* All right, this is an opened path, we need to add a cap between */
+ /* right & left, add the reverse of left, then add a final cap */
+ /* between left & right. */
+ error = ft_stroker_cap( stroker, stroker->angle_in, 0 );
+ if ( error )
+ goto Exit;
+
+ /* add reversed points from `left' to `right' */
+ error = ft_stroker_add_reverse_left( stroker, TRUE );
+ if ( error )
+ goto Exit;
+
+ /* now add the final cap */
+ stroker->center = stroker->subpath_start;
+ error = ft_stroker_cap( stroker,
+ stroker->subpath_angle + SW_FT_ANGLE_PI, 0 );
+ if ( error )
+ goto Exit;
+
+ /* Now end the right subpath accordingly. The left one is */
+ /* rewind and doesn't need further processing. */
+ ft_stroke_border_close( right, FALSE );
+ }
+ else
+ {
+ SW_FT_Angle turn;
+ SW_FT_Int inside_side;
+
+
+ /* close the path if needed */
+ if ( stroker->center.x != stroker->subpath_start.x ||
+ stroker->center.y != stroker->subpath_start.y )
+ {
+ error = SW_FT_Stroker_LineTo( stroker, &stroker->subpath_start );
+ if ( error )
+ goto Exit;
+ }
+
+ /* process the corner */
+ stroker->angle_out = stroker->subpath_angle;
+ turn = SW_FT_Angle_Diff( stroker->angle_in,
+ stroker->angle_out );
+
+ /* no specific corner processing is required if the turn is 0 */
+ if ( turn != 0 )
+ {
+ /* when we turn to the right, the inside side is 0 */
+ inside_side = 0;
+
+ /* otherwise, the inside side is 1 */
+ if ( turn < 0 )
+ inside_side = 1;
+
+ error = ft_stroker_inside( stroker,
+ inside_side,
+ stroker->subpath_line_length );
+ if ( error )
+ goto Exit;
+
+ /* process the outside side */
+ error = ft_stroker_outside( stroker,
+ 1 - inside_side,
+ stroker->subpath_line_length );
+ if ( error )
+ goto Exit;
+ }
+
+ /* then end our two subpaths */
+ ft_stroke_border_close( stroker->borders + 0, FALSE );
+ ft_stroke_border_close( stroker->borders + 1, TRUE );
+ }
+
+ Exit:
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_GetBorderCounts( SW_FT_Stroker stroker,
+ SW_FT_StrokerBorder border,
+ SW_FT_UInt *anum_points,
+ SW_FT_UInt *anum_contours )
+ {
+ SW_FT_UInt num_points = 0, num_contours = 0;
+ SW_FT_Error error;
+
+
+ if ( !stroker || border > 1 )
+ {
+ error = -1;//SW_FT_THROW( Invalid_Argument );
+ goto Exit;
+ }
+
+ error = ft_stroke_border_get_counts( stroker->borders + border,
+ &num_points, &num_contours );
+ Exit:
+ if ( anum_points )
+ *anum_points = num_points;
+
+ if ( anum_contours )
+ *anum_contours = num_contours;
+
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ SW_FT_Error
+ SW_FT_Stroker_GetCounts( SW_FT_Stroker stroker,
+ SW_FT_UInt *anum_points,
+ SW_FT_UInt *anum_contours )
+ {
+ SW_FT_UInt count1, count2, num_points = 0;
+ SW_FT_UInt count3, count4, num_contours = 0;
+ SW_FT_Error error;
+
+
+ error = ft_stroke_border_get_counts( stroker->borders + 0,
+ &count1, &count2 );
+ if ( error )
+ goto Exit;
+
+ error = ft_stroke_border_get_counts( stroker->borders + 1,
+ &count3, &count4 );
+ if ( error )
+ goto Exit;
+
+ num_points = count1 + count3;
+ num_contours = count2 + count4;
+
+ Exit:
+ *anum_points = num_points;
+ *anum_contours = num_contours;
+ return error;
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ void
+ SW_FT_Stroker_ExportBorder( SW_FT_Stroker stroker,
+ SW_FT_StrokerBorder border,
+ SW_FT_Outline* outline )
+ {
+ if ( border == SW_FT_STROKER_BORDER_LEFT ||
+ border == SW_FT_STROKER_BORDER_RIGHT )
+ {
+ SW_FT_StrokeBorder sborder = & stroker->borders[border];
+
+
+ if ( sborder->valid )
+ ft_stroke_border_export( sborder, outline );
+ }
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ void
+ SW_FT_Stroker_Export( SW_FT_Stroker stroker,
+ SW_FT_Outline* outline )
+ {
+ SW_FT_Stroker_ExportBorder( stroker, SW_FT_STROKER_BORDER_LEFT, outline );
+ SW_FT_Stroker_ExportBorder( stroker, SW_FT_STROKER_BORDER_RIGHT, outline );
+ }
+
+
+ /* documentation is in ftstroke.h */
+
+ /*
+ * The following is very similar to SW_FT_Outline_Decompose, except
+ * that we do support opened paths, and do not scale the outline.
+ */
+ SW_FT_Error
+ SW_FT_Stroker_ParseOutline( SW_FT_Stroker stroker,
+ SW_FT_Outline* outline,
+ SW_FT_Bool opened )
+ {
+ SW_FT_Vector v_last;
+ SW_FT_Vector v_control;
+ SW_FT_Vector v_start;
+
+ SW_FT_Vector* point;
+ SW_FT_Vector* limit;
+ char* tags;
+
+ SW_FT_Error error;
+
+ SW_FT_Int n; /* index of contour in outline */
+ SW_FT_UInt first; /* index of first point in contour */
+ SW_FT_Int tag; /* current point's state */
+
+
+ if ( !outline || !stroker )
+ return -1;//SW_FT_THROW( Invalid_Argument );
+
+ SW_FT_Stroker_Rewind( stroker );
+
+ first = 0;
+
+ for ( n = 0; n < outline->n_contours; n++ )
+ {
+ SW_FT_UInt last; /* index of last point in contour */
+
+
+ last = outline->contours[n];
+ limit = outline->points + last;
+
+ /* skip empty points; we don't stroke these */
+ if ( last <= first )
+ {
+ first = last + 1;
+ continue;
+ }
+
+ v_start = outline->points[first];
+ v_last = outline->points[last];
+
+ v_control = v_start;
+
+ point = outline->points + first;
+ tags = outline->tags + first;
+ tag = SW_FT_CURVE_TAG( tags[0] );
+
+ /* A contour cannot start with a cubic control point! */
+ if ( tag == SW_FT_CURVE_TAG_CUBIC )
+ goto Invalid_Outline;
+
+ /* check first point to determine origin */
+ if ( tag == SW_FT_CURVE_TAG_CONIC )
+ {
+ /* First point is conic control. Yes, this happens. */
+ if ( SW_FT_CURVE_TAG( outline->tags[last] ) == SW_FT_CURVE_TAG_ON )
+ {
+ /* start at last point if it is on the curve */
+ v_start = v_last;
+ limit--;
+ }
+ else
+ {
+ /* if both first and last points are conic, */
+ /* start at their middle */
+ v_start.x = ( v_start.x + v_last.x ) / 2;
+ v_start.y = ( v_start.y + v_last.y ) / 2;
+ }
+ point--;
+ tags--;
+ }
+
+ error = SW_FT_Stroker_BeginSubPath( stroker, &v_start, opened );
+ if ( error )
+ goto Exit;
+
+ while ( point < limit )
+ {
+ point++;
+ tags++;
+
+ tag = SW_FT_CURVE_TAG( tags[0] );
+ switch ( tag )
+ {
+ case SW_FT_CURVE_TAG_ON: /* emit a single line_to */
+ {
+ SW_FT_Vector vec;
+
+
+ vec.x = point->x;
+ vec.y = point->y;
+
+ error = SW_FT_Stroker_LineTo( stroker, &vec );
+ if ( error )
+ goto Exit;
+ continue;
+ }
+
+ case SW_FT_CURVE_TAG_CONIC: /* consume conic arcs */
+ v_control.x = point->x;
+ v_control.y = point->y;
+
+ Do_Conic:
+ if ( point < limit )
+ {
+ SW_FT_Vector vec;
+ SW_FT_Vector v_middle;
+
+
+ point++;
+ tags++;
+ tag = SW_FT_CURVE_TAG( tags[0] );
+
+ vec = point[0];
+
+ if ( tag == SW_FT_CURVE_TAG_ON )
+ {
+ error = SW_FT_Stroker_ConicTo( stroker, &v_control, &vec );
+ if ( error )
+ goto Exit;
+ continue;
+ }
+
+ if ( tag != SW_FT_CURVE_TAG_CONIC )
+ goto Invalid_Outline;
+
+ v_middle.x = ( v_control.x + vec.x ) / 2;
+ v_middle.y = ( v_control.y + vec.y ) / 2;
+
+ error = SW_FT_Stroker_ConicTo( stroker, &v_control, &v_middle );
+ if ( error )
+ goto Exit;
+
+ v_control = vec;
+ goto Do_Conic;
+ }
+
+ error = SW_FT_Stroker_ConicTo( stroker, &v_control, &v_start );
+ goto Close;
+
+ default: /* SW_FT_CURVE_TAG_CUBIC */
+ {
+ SW_FT_Vector vec1, vec2;
+
+
+ if ( point + 1 > limit ||
+ SW_FT_CURVE_TAG( tags[1] ) != SW_FT_CURVE_TAG_CUBIC )
+ goto Invalid_Outline;
+
+ point += 2;
+ tags += 2;
+
+ vec1 = point[-2];
+ vec2 = point[-1];
+
+ if ( point <= limit )
+ {
+ SW_FT_Vector vec;
+
+
+ vec = point[0];
+
+ error = SW_FT_Stroker_CubicTo( stroker, &vec1, &vec2, &vec );
+ if ( error )
+ goto Exit;
+ continue;
+ }
+
+ error = SW_FT_Stroker_CubicTo( stroker, &vec1, &vec2, &v_start );
+ goto Close;
+ }
+ }
+ }
+
+ Close:
+ if ( error )
+ goto Exit;
+
+ /* don't try to end the path if no segments have been generated */
+ if ( !stroker->first_point )
+ {
+ error = SW_FT_Stroker_EndSubPath( stroker );
+ if ( error )
+ goto Exit;
+ }
+
+ first = last + 1;
+ }
+
+ return 0;
+
+ Exit:
+ return error;
+
+ Invalid_Outline:
+ return -2;//SW_FT_THROW( Invalid_Outline );
+ }
+
+
+/* END */
diff --git a/src/lib/ector/software/sw_ft_types.h b/src/lib/ector/software/sw_ft_types.h
index 1e8b865233..828103aeab 100755
--- a/src/lib/ector/software/sw_ft_types.h
+++ b/src/lib/ector/software/sw_ft_types.h
@@ -1,160 +1,160 @@
-#ifndef SW_FT_TYPES_H
-#define SW_FT_TYPES_H
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Fixed */
-/* */
-/* <Description> */
-/* This type is used to store 16.16 fixed-point values, like scaling */
-/* values or matrix coefficients. */
-/* */
-typedef signed long SW_FT_Fixed;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Int */
-/* */
-/* <Description> */
-/* A typedef for the int type. */
-/* */
-typedef signed int SW_FT_Int;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_UInt */
-/* */
-/* <Description> */
-/* A typedef for the unsigned int type. */
-/* */
-typedef unsigned int SW_FT_UInt;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Long */
-/* */
-/* <Description> */
-/* A typedef for signed long. */
-/* */
-typedef signed long SW_FT_Long;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_ULong */
-/* */
-/* <Description> */
-/* A typedef for unsigned long. */
-/* */
-typedef unsigned long SW_FT_ULong;
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Short */
-/* */
-/* <Description> */
-/* A typedef for signed short. */
-/* */
-typedef signed short SW_FT_Short;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Byte */
-/* */
-/* <Description> */
-/* A simple typedef for the _unsigned_ char type. */
-/* */
-typedef unsigned char SW_FT_Byte;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Bool */
-/* */
-/* <Description> */
-/* A typedef of unsigned char, used for simple booleans. As usual, */
-/* values 1 and~0 represent true and false, respectively. */
-/* */
-typedef unsigned char SW_FT_Bool;
-
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Error */
-/* */
-/* <Description> */
-/* The FreeType error code type. A value of~0 is always interpreted */
-/* as a successful operation. */
-/* */
-typedef int SW_FT_Error;
-
-
-/*************************************************************************/
-/* */
-/* <Type> */
-/* SW_FT_Pos */
-/* */
-/* <Description> */
-/* The type SW_FT_Pos is used to store vectorial coordinates. Depending */
-/* on the context, these can represent distances in integer font */
-/* units, or 16.16, or 26.6 fixed-point pixel coordinates. */
-/* */
-typedef signed long SW_FT_Pos;
-
-
-/*************************************************************************/
-/* */
-/* <Struct> */
-/* SW_FT_Vector */
-/* */
-/* <Description> */
-/* A simple structure used to store a 2D vector; coordinates are of */
-/* the SW_FT_Pos type. */
-/* */
-/* <Fields> */
-/* x :: The horizontal coordinate. */
-/* y :: The vertical coordinate. */
-/* */
-typedef struct SW_FT_Vector_
-{
- SW_FT_Pos x;
- SW_FT_Pos y;
-
-} SW_FT_Vector;
-
-
-typedef long long int SW_FT_Int64;
-typedef unsigned long long int SW_FT_UInt64;
-
-typedef signed int SW_FT_Int32;
-typedef unsigned int SW_FT_UInt32;
-
-
-#define SW_FT_BOOL( x ) ( (SW_FT_Bool)( x ) )
-
-#define SW_FT_SIZEOF_LONG 4
-
-#ifndef TRUE
-#define TRUE 1
-#endif
-
-#ifndef FALSE
-#define FALSE 0
-#endif
-
-
-#endif // SW_FT_TYPES_H
+#ifndef SW_FT_TYPES_H
+#define SW_FT_TYPES_H
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Fixed */
+/* */
+/* <Description> */
+/* This type is used to store 16.16 fixed-point values, like scaling */
+/* values or matrix coefficients. */
+/* */
+typedef signed long SW_FT_Fixed;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Int */
+/* */
+/* <Description> */
+/* A typedef for the int type. */
+/* */
+typedef signed int SW_FT_Int;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_UInt */
+/* */
+/* <Description> */
+/* A typedef for the unsigned int type. */
+/* */
+typedef unsigned int SW_FT_UInt;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Long */
+/* */
+/* <Description> */
+/* A typedef for signed long. */
+/* */
+typedef signed long SW_FT_Long;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_ULong */
+/* */
+/* <Description> */
+/* A typedef for unsigned long. */
+/* */
+typedef unsigned long SW_FT_ULong;
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Short */
+/* */
+/* <Description> */
+/* A typedef for signed short. */
+/* */
+typedef signed short SW_FT_Short;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Byte */
+/* */
+/* <Description> */
+/* A simple typedef for the _unsigned_ char type. */
+/* */
+typedef unsigned char SW_FT_Byte;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Bool */
+/* */
+/* <Description> */
+/* A typedef of unsigned char, used for simple booleans. As usual, */
+/* values 1 and~0 represent true and false, respectively. */
+/* */
+typedef unsigned char SW_FT_Bool;
+
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Error */
+/* */
+/* <Description> */
+/* The FreeType error code type. A value of~0 is always interpreted */
+/* as a successful operation. */
+/* */
+typedef int SW_FT_Error;
+
+
+/*************************************************************************/
+/* */
+/* <Type> */
+/* SW_FT_Pos */
+/* */
+/* <Description> */
+/* The type SW_FT_Pos is used to store vectorial coordinates. Depending */
+/* on the context, these can represent distances in integer font */
+/* units, or 16.16, or 26.6 fixed-point pixel coordinates. */
+/* */
+typedef signed long SW_FT_Pos;
+
+
+/*************************************************************************/
+/* */
+/* <Struct> */
+/* SW_FT_Vector */
+/* */
+/* <Description> */
+/* A simple structure used to store a 2D vector; coordinates are of */
+/* the SW_FT_Pos type. */
+/* */
+/* <Fields> */
+/* x :: The horizontal coordinate. */
+/* y :: The vertical coordinate. */
+/* */
+typedef struct SW_FT_Vector_
+{
+ SW_FT_Pos x;
+ SW_FT_Pos y;
+
+} SW_FT_Vector;
+
+
+typedef long long int SW_FT_Int64;
+typedef unsigned long long int SW_FT_UInt64;
+
+typedef signed int SW_FT_Int32;
+typedef unsigned int SW_FT_UInt32;
+
+
+#define SW_FT_BOOL( x ) ( (SW_FT_Bool)( x ) )
+
+#define SW_FT_SIZEOF_LONG 4
+
+#ifndef TRUE
+#define TRUE 1
+#endif
+
+#ifndef FALSE
+#define FALSE 0
+#endif
+
+
+#endif // SW_FT_TYPES_H