README.limn 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. This program converts bitmap fonts to a homegrown outline format, bezier
  2. (BZR). The program `bzrto' converts that format to something usable for
  3. typesetting.
  4. We used two main sources in writing the program:
  5. @mastersthesis{Schneider:PIC-88,
  6. author = "Philip J. Schneider",
  7. title = "Phoenix: An Interactive Curve Design System Based on the
  8. Automatic Fitting of Hand-Sketched Curves",
  9. school = inst-u-wash,
  10. year = 1988,
  11. }
  12. @article{Plass:CG-17-229,
  13. author = "Michael Plass and Maureen Stone",
  14. title = "Curve-fitting with Piecewise Parametric Cubics",
  15. journal = j-comp-graphics,
  16. year = 1983,
  17. volume = 17,
  18. number = 3,
  19. month = jul,
  20. pages = "229-239",
  21. }
  22. We had access to the code for Phoenix, thanks to Philip, but none of our
  23. code is based on his (mostly because his task was allow interactive
  24. sketching, and ours to fit bitmap characters, and the two require
  25. different data structures). The general outline of the fitting
  26. algorithm does come from Phoenix.
  27. We also found this article helpful:
  28. @Inproceedings{Gonczarowski:RIDT91-1,
  29. author = "Jakob Gonczarowski",
  30. title = "A Fast Approach to Auto-tracing (with Parametric
  31. Cubics)",
  32. pages = "1--15",
  33. crossref = "Morris:RIDT91",
  34. acknowledgement = ack-kb,
  35. }
  36. @String{proc-RIDT91 = "Raster Imaging and Digital Typography II"}
  37. @Proceedings{Morris:RIDT91,
  38. title = proc-RIDT91,
  39. booktitle = proc-RIDT91,
  40. year = "1991",
  41. editor = "Robert A. Morris and Jacques Andr{\'e}",
  42. publisher = pub-CUP,
  43. address = pub-CUP:adr,
  44. acknowledgement = ack-kb,
  45. }
  46. (These BibTeX entries are from the type.bib and ep.bib files on
  47. math.utah.edu:pub/tex/bib.)