home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / fontutils-0.6-base.tgz / fontutils-0.6-base.tar / fsf / fontutils / lib / bounding-box.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  2KB  |  79 lines

  1. /* bounding-box.c: definitions for bounding box operations.
  2.  
  3. Copyright (C) 1992 Free Software Foundation, Inc.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #include "config.h"
  20.  
  21. #include "bounding-box.h"
  22.  
  23.  
  24. /* See the comments at `get_character_bitmap' in gf_input.c for why the
  25.    width and height are treated asymmetrically.  */
  26.  
  27. const bounding_box_type
  28. dimensions_to_bb (dimensions_type dimensions)
  29. {
  30.   bounding_box_type answer;
  31.  
  32.   MIN_ROW (answer) = 0;
  33.   MIN_COL (answer) = 0;
  34.   MAX_ROW (answer) = MAX ((int) DIMENSIONS_HEIGHT (dimensions) - 1, 0);
  35.   MAX_COL (answer) = MAX (DIMENSIONS_WIDTH (dimensions), 0);
  36.  
  37.   return answer;
  38. }
  39.  
  40.  
  41. /* Dimensions can't be negative, even though bounding boxes can, so we
  42.    have to check.  */
  43.    
  44. const dimensions_type
  45. bb_to_dimensions (bounding_box_type bb)
  46. {
  47.   dimensions_type d;
  48.   
  49.   DIMENSIONS_WIDTH (d) = MAX (BB_WIDTH (bb), 0);
  50.   DIMENSIONS_HEIGHT (d) = MAX (BB_HEIGHT (bb), 0);
  51.   
  52.   return d;
  53. }
  54.  
  55.  
  56. /* If the point P lies outside of any of the current bounds in BB,
  57.    update BB.  */
  58.  
  59. void
  60. update_real_bounding_box (real_bounding_box_type *bb, real_coordinate_type p)
  61. {
  62.   if (p.x < MIN_COL (*bb)) MIN_COL (*bb) = p.x;
  63.   if (p.x > MAX_COL (*bb)) MAX_COL (*bb) = p.x;
  64.   if (p.y < MIN_ROW (*bb)) MIN_ROW (*bb) = p.y;
  65.   if (p.y > MAX_ROW (*bb)) MAX_ROW (*bb) = p.y;
  66.     
  67. }
  68.  
  69.  
  70. void
  71. update_bounding_box (bounding_box_type *bb, coordinate_type p)
  72. {
  73.   if (p.x < MIN_COL (*bb)) MIN_COL (*bb) = p.x;
  74.   if (p.x > MAX_COL (*bb)) MAX_COL (*bb) = p.x;
  75.   if (p.y < MIN_ROW (*bb)) MIN_ROW (*bb) = p.y;
  76.   if (p.y > MAX_ROW (*bb)) MAX_ROW (*bb) = p.y;
  77.     
  78. }
  79.