Commit ec6ddd5c5bade3a2896533cab2190ae9c96c0675

Werner Lemberg 2001-05-12T18:04:08

* include/freetype/ftbbox.h: FTBBOX_H -> __FTBBOX_H__. * include/freetype/fttrigon.h: __FT_TRIGONOMETRY_H__ -> __FTTRIGON_H__. Include FT_FREETYPE_H. Beautified; added copyright. * src/base/fttrigon.c: Beautified; added copyright.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
diff --git a/ChangeLog b/ChangeLog
index 64dc91c..e7abe8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2001-05-12  Werner Lemberg  <wl@gnu.org>
+
+	* include/freetype/ftbbox.h: FTBBOX_H -> __FTBBOX_H__.
+	* include/freetype/fttrigon.h: __FT_TRIGONOMETRY_H__ ->
+	__FTTRIGON_H__.
+	Include FT_FREETYPE_H.
+	Beautified; added copyright.
+	* src/base/fttrigon.c: Beautified; added copyright.
+
 2001-05-11  David Turner  <david@freetype.org>
 
 	* src/cff/cffparse.c (cff_parse_font_matrix), src/cid/cidload.c
diff --git a/include/freetype/ftbbox.h b/include/freetype/ftbbox.h
index ddc506c..c2259d9 100644
--- a/include/freetype/ftbbox.h
+++ b/include/freetype/ftbbox.h
@@ -27,8 +27,8 @@
   /*************************************************************************/
 
 
-#ifndef FTBBOX_H
-#define FTBBOX_H
+#ifndef __FTBBOX_H__
+#define __FTBBOX_H__
 
 
 #include <ft2build.h>
@@ -76,7 +76,7 @@ FT_BEGIN_HEADER
 
 FT_END_HEADER
 
-#endif /* FTBBOX_H */
+#endif /* __FTBBOX_H__ */
 
 
 /* END */
diff --git a/include/freetype/fttrigon.h b/include/freetype/fttrigon.h
index 311040f..391dcbb 100644
--- a/include/freetype/fttrigon.h
+++ b/include/freetype/fttrigon.h
@@ -1,213 +1,265 @@
-#ifndef __FT_TRIGONOMETRY_H__
-#define __FT_TRIGONOMETRY_H__
+/***************************************************************************/
+/*                                                                         */
+/*  fttrigon.h                                                             */
+/*                                                                         */
+/*    FreeType trigonometric functions (specification).                    */
+/*                                                                         */
+/*  Copyright 2001 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.                                        */
+/*                                                                         */
+/***************************************************************************/
+
+
+#ifndef __FTTRIGON_H__
+#define __FTTRIGON_H__
+
+#include FT_FREETYPE_H
+
 
 FT_BEGIN_HEADER
 
+
  /***************************************************************************
   *
-  * @section: computations
+  * @section:
+  *   computations
   *
   */
 
+
  /***************************************************************************
   *
-  * @type: FT_Angle
+  * @type:
+  *   FT_Angle
   *
   * @description:
-  *   this type is used to model angle values in FreeType. Note that
-  *   the angle is a 16.16 fixed float value expressed in _degrees_
+  *   This type is used to model angle values in FreeType.  Note that
+  *   the angle is a 16.16 fixed float value expressed in degrees.
   */
-  typedef FT_Fixed   FT_Angle;
+  typedef FT_Fixed  FT_Angle;
+
 
  /***************************************************************************
   *
-  * @macro: FT_ANGLE_PI
+  * @macro:
+  *   FT_ANGLE_PI
   *
   * @description:
-  *   the angle pi expressed in @FT_Angle units
+  *   The angle pi expressed in @FT_Angle units.
   */
-#define  FT_ANGLE_PI   (180L << 16)
+#define FT_ANGLE_PI  ( 180L << 16 )
+
 
  /***************************************************************************
   *
-  * @macro: FT_ANGLE_2PI
+  * @macro:
+  *   FT_ANGLE_2PI
   *
   * @description:
-  *   the angle 2pi expressed in @FT_Angle units
+  *   The angle 2*pi expressed in @FT_Angle units.
   */
-#define  FT_ANGLE_2PI  (FT_ANGLE_PI*2)
+#define FT_ANGLE_2PI  ( FT_ANGLE_PI * 2 )
+
 
  /***************************************************************************
   *
-  * @macro: FT_ANGLE_PI2
+  * @macro:
+  *   FT_ANGLE_PI2
   *
   * @description:
-  *   the angle pi/2 expressed in @FT_Angle units
+  *   The angle pi/2 expressed in @FT_Angle units.
   */
-#define  FT_ANGLE_PI2  (FT_ANGLE_PI/2)
+#define FT_ANGLE_PI2  ( FT_ANGLE_PI / 2 )
+
 
  /***************************************************************************
   *
-  * @macro: FT_ANGLE_PI4
+  * @macro:
+  *   FT_ANGLE_PI4
   *
   * @description:
-  *   the angle pi/4 expressed in @FT_Angle units
+  *   The angle pi/4 expressed in @FT_Angle units.
   */
-#define  FT_ANGLE_PI4  (FT_ANGLE_PI/4)
+#define FT_ANGLE_PI4  ( FT_ANGLE_PI / 4 )
 
 
  /***************************************************************************
   *
-  * @function: FT_Sin
+  * @function:
+  *   FT_Sin
   *
   * @description:
-  *   return the sinus of a given angle in fixed point format
+  *   Return the sinus of a given angle in fixed point format.
   *
   * @input:
-  *    angle :: input angle
+  *    angle :: The input angle.
   *
   * @return:
-  *    sinus value
+  *    The sinus value.
   *
   * @note:
-  *   if you need both the sinus and cosinus for a given angle, you'd
-  *   better use the function @FT_Vector_Unit
+  *   If you need both the sinus and cosinus for a given angle, use the
+  *   function @FT_Vector_Unit.
   */
-  FT_EXPORT(FT_Fixed)    FT_Sin( FT_Angle  angle );
+  FT_EXPORT( FT_Fixed )  FT_Sin( FT_Angle  angle );
+
 
  /***************************************************************************
   *
-  * @function: FT_Cos
+  * @function:
+  *   FT_Cos
   *
   * @description:
-  *   return the cosinus of a given angle in fixed point format
+  *   Return the cosinus of a given angle in fixed point format.
   *
   * @input:
-  *    angle :: input angle
+  *    angle :: The input angle.
   *
   * @return:
-  *    cosinus value
+  *    The cosinus value.
   *
   * @note:
-  *   if you need both the sinus and cosinus for a given angle, you'd
-  *   better use the function @FT_Vector_Unit
+  *   If you need both the sinus and cosinus for a given angle, use the
+  *   function @FT_Vector_Unit.
   */
-  FT_EXPORT(FT_Fixed)    FT_Cos( FT_Angle  angle );  
+  FT_EXPORT( FT_Fixed )  FT_Cos( FT_Angle  angle );  
+
 
  /***************************************************************************
   *
-  * @function: FT_Tan
+  * @function:
+  *   FT_Tan
   *
   * @description:
-  *   return the tangent of a given angle in fixed point format
+  *   Return the tangent of a given angle in fixed point format.
   *
   * @input:
-  *   angle :: input angle
+  *   angle :: The input angle.
   *
   * @return:
-  *   tangent value
+  *   The tangent value.
   */
-  FT_EXPORT(FT_Fixed)    FT_Tan( FT_Angle  angle );
+  FT_EXPORT( FT_Fixed )  FT_Tan( FT_Angle  angle );
 
 
  /***************************************************************************
   *
-  * @function: FT_Atan2
+  * @function:
+  *   FT_Atan2
   *
   * @description:
-  *   return the arc-tangent corresponding to a given vector (x,y) in
-  *   the 2d plane
+  *   Return the arc-tangent corresponding to a given vector (x,y) in
+  *   the 2d plane.
   *
   * @input:
-  *   x :: horizontal vector coordinate
-  *   y :: vertical vector coordinate
+  *   x :: The horizontal vector coordinate.
+  *   y :: The vertical vector coordinate.
   *
   * @return:
-  *   arc-tangent value (i.e. angle)
+  *   The arc-tangent value (i.e. angle).
   */
-  FT_EXPORT(FT_Angle)    FT_Atan2( FT_Fixed  x, FT_Fixed  y );
+  FT_EXPORT( FT_Angle )  FT_Atan2( FT_Fixed  x, FT_Fixed  y );
 
 
  /***************************************************************************
   *
-  * @function: FT_Vector_Unit
+  * @function:
+  *   FT_Vector_Unit
   *
   * @description:
-  *   return the unit vector corresponding to a given angle. After the call,
+  *   Return the unit vector corresponding to a given angle.  After the call,
   *   the value of "vec.x" will be "sin(theta)", and the value of "vec.y"
-  *   will be "cos(angle)"
+  *   will be "cos(angle)".
   *
-  *   this function is useful to retrieve both the sinus and cosinus
-  *   of a given angle quickly
+  *   This function is useful to retrieve both the sinus and cosinus of a
+  *   given angle quickly.
   *
   * @input:
-  *   vec   :: address of target vector
-  *   angle :: address of angle
+  *   vec   :: The address of target vector.
+  *   angle :: The address of angle.
   */
-  FT_EXPORT(void)        FT_Vector_Unit( FT_Vector*  vec,
-                                         FT_Angle    angle );
+  FT_EXPORT( void )  FT_Vector_Unit( FT_Vector*  vec,
+                                     FT_Angle    angle );
+
 
  /***************************************************************************
   *
-  * @function: FT_Vector_Rotate
+  * @function:
+  *   FT_Vector_Rotate
   *
   * @description:
-  *   rotate a given vector by a given angle
+  *   Rotate a vector by a given angle.
   *
   * @input:
-  *   vec   :: address of target vector
-  *   angle :: address of angle
+  *   vec   :: The address of target vector.
+  *   angle :: The address of angle.
   */
-  FT_EXPORT(void)        FT_Vector_Rotate( FT_Vector*    vec,
-                                           FT_Angle      angle );
+  FT_EXPORT( void )  FT_Vector_Rotate( FT_Vector*  vec,
+                                       FT_Angle    angle );
+
 
  /***************************************************************************
   *
-  * @function: FT_Vector_Length
+  * @function:
+  *   FT_Vector_Length
   *
   * @description:
-  *   returns the length of a given vector
+  *   Return the length of a given vector.
   *
   * @input:
-  *   vec   :: address of target vector
+  *   vec :: The address of target vector.
   *
   * @return:
-  *   vector length, expressed in the same units that the original
-  *   vector coordinates !!
+  *   The vector length, expressed in the same units that the original
+  *   vector coordinates.
   */
-  FT_EXPORT(FT_Fixed)    FT_Vector_Length( FT_Vector*  vec );
+  FT_EXPORT( FT_Fixed )  FT_Vector_Length( FT_Vector*  vec );
+
 
  /***************************************************************************
   *
-  * @function: FT_Vector_Normalize
+  * @function:
+  *   FT_Vector_Normalize
   *
   * @description:
-  *   normalize a given vector (i.e. compute the equivalent unit vector)
+  *   Normalize a given vector (i.e. compute the equivalent unit vector).
   *
   * @input:
-  *   vec   :: address of target vector
+  *   vec :: The address of target vector.
   */
-  FT_EXPORT(void)        FT_Vector_Normalize( FT_Vector*  vec );
+  FT_EXPORT( void )  FT_Vector_Normalize( FT_Vector*  vec );
+
 
  /***************************************************************************
   *
-  * @function: FT_Vector_Polarize
+  * @function:
+  *   FT_Vector_Polarize
   *
   * @description:
-  *   compute both the length and angle of a given vector
+  *   Compute both the length and angle of a given vector.
   *
   * @input:
-  *   vec    :: address of source vector
+  *   vec :: The address of source vector.
   *
   * @output:
-  *   length :: vector length
-  *   angle  :: vector angle
+  *   length :: The vector length.
+  *   angle  :: The vector angle.
   */
-  FT_EXPORT(void)        FT_Vector_Polarize( FT_Vector*  vec,
-                                             FT_Fixed   *length,
-                                             FT_Angle   *angle );
+  FT_EXPORT( void )  FT_Vector_Polarize( FT_Vector*  vec,
+                                         FT_Fixed   *length,
+                                         FT_Angle   *angle );
   /* */
+
   
 FT_END_HEADER
 
-#endif /* __FT_TRIGONOMETRY_H__ */
+#endif /* __FTTRIGON_H__ */
+
+
+/* END */
diff --git a/src/base/fttrigon.c b/src/base/fttrigon.c
index 6935518..02d2f21 100644
--- a/src/base/fttrigon.c
+++ b/src/base/fttrigon.c
@@ -1,70 +1,89 @@
+/***************************************************************************/
+/*                                                                         */
+/*  fttrigon.c                                                             */
+/*                                                                         */
+/*    FreeType trigonometric functions (body).                             */
+/*                                                                         */
+/*  Copyright 2001 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 <ft2build.h>
 #include FT_TRIGONOMETRY_H
 
-/* the following is 0.2715717684432231 * 2^30 */
-#define  FT_TRIG_COSCALE   0x11616E8E	/* 291597966 = 0.2715717684432241 * 2^30, valid for j>13 */
+
+  /* the following is 0.2715717684432231 * 2^30 */
+#define FT_TRIG_COSCALE  0x11616E8EUL
 
   /* this table was generated for FT_PI = 180L << 16, i.e. degrees */
-#define  FT_TRIG_MAX_ITERS  23
+#define FT_TRIG_MAX_ITERS  23
 
   static const FT_Fixed
-  ft_trig_arctan_table[ 24 ] =
+  ft_trig_arctan_table[24] =
   {
     4157273, 2949120, 1740967, 919879, 466945, 234379, 117304, 58666,
     29335, 14668, 7334, 3667, 1833, 917, 458, 229, 115, 57, 29, 14, 7,
     4, 2, 1
   };
 
+  /* the Cordic shrink factor, multiplied by 2^32 */
+#define FT_TRIG_SCALE    1166391785UL  /* 0x4585BA38UL */
 
-/* the Cordic shrink factor, multiplied by 2^32 */
-#define  FT_TRIG_SCALE    1166391785  /* 0x4585BA38U */
 
 #ifdef FT_CONFIG_HAS_INT64
 
- /* multiply a given value by the CORDIC shrink factor */
-  static FT_Fixed
-  ft_trig_downscale( FT_Fixed  val )
+  /* multiply a given value by the CORDIC shrink factor */
+  static FT_Fixed  ft_trig_downscale( FT_Fixed  val )
   {
     FT_Fixed  s;
     FT_Int64  v;
 
+
     s   = val;
-    val = (val >= 0) ? val : -val;
+    val = ( val >= 0 ) ? val : -val;
     
-    v   = (val * (FT_Int64)FT_TRIG_SCALE) + 0x100000000L;
-    val = (FT_Fixed)(v >> 32);
+    v   = ( val * (FT_Int64)FT_TRIG_SCALE ) + 0x100000000UL;
+    val = (FT_Fixed)( v >> 32 );
 
     return ( s >= 0 ) ? val : -val;
   }
 
 #else /* !FT_CONFIG_HAS_INT64 */
 
- /* multiply a given value by the CORDIC shrink factor */
-  static FT_Fixed
-  ft_trig_downscale( FT_Fixed  val )
+  /* multiply a given value by the CORDIC shrink factor */
+  static FT_Fixed  ft_trig_downscale( FT_Fixed  val )
   {
     FT_Fixed   s;
     FT_UInt32  v1, v2, k1, k2, hi, lo1, lo2, lo3;
     
+
     s   = val;
     val = ( val >= 0 ) ? val : -val;
 
     v1 = (FT_UInt32)val >> 16;
     v2 = (FT_UInt32)val & 0xFFFF;
     
-    k1 = FT_TRIG_SCALE >> 16;      /* constant */
-    k2 = FT_TRIG_SCALE & 0xFFFF;   /* constant */
+    k1 = FT_TRIG_SCALE >> 16;       /* constant */
+    k2 = FT_TRIG_SCALE & 0xFFFF;    /* constant */
 
-    hi   = k1*v1;
-    lo1  = k1*v2 + k2*v1;   /* can't overflow */
+    hi   = k1 * v1;
+    lo1  = k1 * v2 + k2 * v1;       /* can't overflow */
     
-    lo2  = k2*v2 >> 16;
+    lo2  = ( k2 * v2 ) >> 16;
     lo3  = ( lo1 >= lo2 ) ? lo1 : lo2;
     lo1 += lo2;
 
     hi  += lo1 >> 16;
-    if (lo1 < lo3)
-      hi += 0x10000U;
+    if ( lo1 < lo3 )
+      hi += 0x10000UL;
 
     val  = (FT_Fixed)hi;
 
@@ -74,67 +93,65 @@
 #endif /* !FT_CONFIG_HAS_INT64 */
 
 
-  static FT_Int
-  ft_trig_prenorm( FT_Vector*  vec )
+  static FT_Int  ft_trig_prenorm( FT_Vector*  vec )
   {
     FT_Fixed  x, y, z;
     FT_Int    shift;
 
+
     x = vec->x;
     y = vec->y;
     
-    z     = (( x >= 0 ) ? x : - x) | ((y >= 0) ? y : -y);
+    z     = ( ( x >= 0 ) ? x : - x ) | ( (y >= 0) ? y : -y );
     shift = 0;
     
-    if ( z < (1L << 27) )
+    if ( z < ( 1L << 27 ) )
     {
       do
       {
         shift++;
         z <<= 1;
-      }
-      while ( z < (1L << 27) );
+      } while ( z < ( 1L << 27 ) );
       
-      vec->x = (x << shift);
-      vec->y = (y << shift);
+      vec->x = x << shift;
+      vec->y = y << shift;
     }
-    else if ( z > (1L << 28 ) )
+    else if ( z > ( 1L << 28 ) )
     {
       do
       {
         shift++;
         z >>= 1;
-      }
-      while ( z > (1L << 28) );
+      } while ( z > ( 1L << 28 ) );
 
-      vec->x = (x >> shift);
-      vec->y = (y >> shift);
+      vec->x = x >> shift;
+      vec->y = y >> shift;
       shift  = -shift;
     }
     return shift;
   }
     
-  
-
 
-  static void
-  ft_trig_pseudo_rotate( FT_Vector*  vec, FT_Angle  theta )
+  static void  ft_trig_pseudo_rotate( FT_Vector*  vec,
+                                      FT_Angle    theta )
   {
-    FT_Int          i;
-    FT_Fixed        x, y, xtemp;
-    const FT_Fixed *arctanptr;
+    FT_Int           i;
+    FT_Fixed         x, y, xtemp;
+    const FT_Fixed  *arctanptr;
+
 
     x = vec->x;
     y = vec->y;
 
     /* Get angle between -90 and 90 degrees */
-    while (theta <= -FT_ANGLE_PI2)
+    while ( theta <= -FT_ANGLE_PI2 )
     {
       x = -x;
       y = -y;
       theta += FT_ANGLE_PI;
     }
-    while (theta > FT_ANGLE_PI2)
+
+    while ( theta > FT_ANGLE_PI2 )
     {
       x = -x;
       y = -y;                   
@@ -143,17 +160,18 @@
 
     /* Initial pseudorotation, with left shift */
     arctanptr = ft_trig_arctan_table;
-    if (theta < 0)
+
+    if ( theta < 0 )
     {
-      xtemp  = x + (y << 1);
-      y      = y - (x << 1);
+      xtemp  = x + ( y << 1 );
+      y      = y - ( x << 1 );
       x      = xtemp;
       theta += *arctanptr++;
     }
     else
     {
-      xtemp  = x - (y << 1);
-      y      = y + (x << 1);
+      xtemp  = x - ( y << 1 );
+      y      = y + ( x << 1 );
       x      = xtemp;
       theta -= *arctanptr++;
     }
@@ -162,90 +180,89 @@
     i = 0;
     do
     {
-      if (theta < 0)
+      if ( theta < 0 )
       {
-        xtemp = x + (y >> i);
-        y     = y - (x >> i);
-        x     = xtemp;
+        xtemp  = x + ( y >> i );
+        y      = y - ( x >> i );
+        x      = xtemp;
         theta += *arctanptr++;
       }
       else
       {
-        xtemp  = x - (y >> i);
-        y      = y + (x >> i);
+        xtemp  = x - ( y >> i );
+        y      = y + ( x >> i );
         x      = xtemp;
         theta -= *arctanptr++;
       }
-    }
-    while ( ++i < FT_TRIG_MAX_ITERS );
+    } while ( ++i < FT_TRIG_MAX_ITERS );
 
     vec->x = x;
     vec->y = y;
   }
 
 
-  static void
-  ft_trig_pseudo_polarize( FT_Vector*  vec )
+  static void  ft_trig_pseudo_polarize( FT_Vector*  vec )
   {
-    FT_Fixed theta;
-    FT_Fixed yi, i;
-    FT_Fixed x, y;
-    const FT_Fixed *arctanptr;
+    FT_Fixed         theta;
+    FT_Fixed         yi, i;
+    FT_Fixed         x, y;
+    const FT_Fixed  *arctanptr;
+
 
     x = vec->x;
     y = vec->y;
 
     /* Get the vector into the right half plane */
     theta = 0;
-    if (x < 0)
+    if ( x < 0 )
     {
       x = -x;
       y = -y;
       theta = 2 * FT_ANGLE_PI2;
     }
 
-    if (y > 0)
+    if ( y > 0 )
       theta = - theta;
 
     arctanptr = ft_trig_arctan_table;
-    if (y < 0)
+
+    if ( y < 0 )
     {
       /* Rotate positive */
-      yi = y + (x << 1);
-      x  = x - (y << 1);
-      y  = yi;
+      yi     = y + ( x << 1 );
+      x      = x - ( y << 1 );
+      y      = yi;
       theta -= *arctanptr++;  /* Subtract angle */
     }
     else
     {
       /* Rotate negative */
-      yi = y - (x << 1);
-      x  = x + (y << 1);
-      y  = yi;
+      yi     = y - ( x << 1 );
+      x      = x + ( y << 1 );
+      y      = yi;
       theta += *arctanptr++;  /* Add angle */
     }
 
     i = 0;
     do
     {
-      if (y < 0)
+      if ( y < 0 )
       {
         /* Rotate positive */
-        yi = y + (x >> i);
-        x  = x - (y >> i);
-        y  = yi;
+        yi     = y + ( x >> i );
+        x      = x - ( y >> i );
+        y      = yi;
         theta -= *arctanptr++;
       }
       else
       {
         /* Rotate negative */
-        yi = y - (x >> i);
-        x  = x + (y >> i);
-        y  = yi;
+        yi     = y - ( x >> i );
+        x      = x + ( y >> i );
+        y      = yi;
         theta += *arctanptr++;
       }
-    }
-    while (++i < FT_TRIG_MAX_ITERS);
+    } while ( ++i < FT_TRIG_MAX_ITERS );
 
     /* round theta */
     if ( theta >= 0 )
@@ -258,11 +275,13 @@
   }
 
 
-  FT_EXPORT_DEF(FT_Fixed)
-  FT_Cos( FT_Angle  angle )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( FT_Fixed )  FT_Cos( FT_Angle  angle )
   {
     FT_Vector  v;
     
+
     v.x = FT_TRIG_COSCALE >> 2;
     v.y = 0;
     ft_trig_pseudo_rotate( &v, angle );
@@ -271,18 +290,21 @@
   }
 
 
-  FT_EXPORT_DEF(FT_Fixed)
-  FT_Sin( FT_Angle  angle )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( FT_Fixed )  FT_Sin( FT_Angle  angle )
   {
-    return FT_Cos( FT_ANGLE_PI2-angle );
+    return FT_Cos( FT_ANGLE_PI2 - angle );
   }
 
 
-  FT_EXPORT_DEF(FT_Fixed)
-  FT_Tan( FT_Angle  angle )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( FT_Fixed )  FT_Tan( FT_Angle  angle )
   {
     FT_Vector  v;
     
+
     v.x = FT_TRIG_COSCALE >> 2;
     v.y = 0;
     ft_trig_pseudo_rotate( &v, angle );
@@ -291,13 +313,14 @@
   }
 
 
+  /* documentation is in fttrigon.h */
 
-  FT_EXPORT_DEF(FT_Angle)
-  FT_Atan2( FT_Fixed  dx,
-            FT_Fixed  dy )
+  FT_EXPORT_DEF( FT_Angle )  FT_Atan2( FT_Fixed  dx,
+                                       FT_Fixed  dy )
   {
     FT_Vector  v;
     
+
     if ( dx == 0 && dy == 0 )
       return 0;
 
@@ -305,31 +328,36 @@
     v.y = dy;      
     ft_trig_prenorm( &v );
     ft_trig_pseudo_polarize( &v );
+
     return v.y;
   }
 
 
-  FT_EXPORT_DEF(void)
-  FT_Vector_Unit( FT_Vector*  vec,
-                  FT_Angle    angle )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( void )  FT_Vector_Unit( FT_Vector*  vec,
+                                         FT_Angle    angle )
   {
-	vec->x = FT_TRIG_COSCALE >> 2;
-	vec->y = 0;
-	ft_trig_pseudo_rotate( vec, angle );
-	vec->x >>= 12;
-	vec->y >>= 12;
+    vec->x = FT_TRIG_COSCALE >> 2;
+    vec->y = 0;
+    ft_trig_pseudo_rotate( vec, angle );
+    vec->x >>= 12;
+    vec->y >>= 12;
   }
 
 
-  FT_EXPORT_DEF(void)
-  FT_Vector_Rotate( FT_Vector*  vec,
-                    FT_Angle  angle )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( void )  FT_Vector_Rotate( FT_Vector*  vec,
+                                           FT_Angle    angle )
   {
     FT_Int     shift;
     FT_Vector  v;
     
+
     v.x   = vec->x;
     v.y   = vec->y;
+
     if ( angle && ( v.x != 0 || v.y != 0 ) )
     {
       shift = ft_trig_prenorm( &v );
@@ -352,12 +380,14 @@
   }
 
 
-  FT_EXPORT_DEF(FT_Fixed)
-  FT_Vector_Length( FT_Vector*  vec )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( FT_Fixed )  FT_Vector_Length( FT_Vector*  vec )
   {
-    FT_Int    shift;
-    FT_Vector v;
+    FT_Int     shift;
+    FT_Vector  v;
     
+
     v = *vec;
 
     /* handle trivial cases */    
@@ -375,17 +405,19 @@
     ft_trig_pseudo_polarize( &v );
     
     v.x = ft_trig_downscale( v.x );
-    return ( shift >= 0 ) ? (v.x >> shift) : (v.x << -shift);
+    return ( shift >= 0 ) ? ( v.x >> shift ) : ( v.x << -shift );
   }  
 
 
-  FT_EXPORT_DEF(void)
-  FT_Vector_Polarize( FT_Vector*  vec,
-                      FT_Fixed   *length,
-                      FT_Angle   *angle )
+  /* documentation is in fttrigon.h */
+
+  FT_EXPORT_DEF( void )  FT_Vector_Polarize( FT_Vector*  vec,
+                                             FT_Fixed   *length,
+                                             FT_Angle   *angle )
   {
-    FT_Int    shift;
-    FT_Vector v;
+    FT_Int     shift;
+    FT_Vector  v;
+
     
     v = *vec;
     
@@ -397,8 +429,9 @@
     
     v.x = ft_trig_downscale( v.x );
 
-    *length = ( shift >= 0 ) ? (v.x >> shift) : (v.x << -shift);
+    *length = ( shift >= 0 ) ? ( v.x >> shift ) : ( v.x << -shift );
     *angle  = v.y;
   }                    
 
 
+/* END */