Orientation.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #region MIT License
  2. /*Copyright (c) 2012 Robert Rouhani <robert.rouhani@gmail.com>
  3. SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
  4. Permission is hereby granted, free of charge, to any person obtaining a copy of
  5. this software and associated documentation files (the "Software"), to deal in
  6. the Software without restriction, including without limitation the rights to
  7. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  8. of the Software, and to permit persons to whom the Software is furnished to do
  9. so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all
  11. copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  18. SOFTWARE.*/
  19. #endregion
  20. using System;
  21. namespace SharpFont
  22. {
  23. /// <summary><para>
  24. /// A list of values used to describe an outline's contour orientation.
  25. /// </para><para>
  26. /// The TrueType and PostScript specifications use different conventions to determine whether outline contours
  27. /// should be filled or unfilled.
  28. /// </para></summary>
  29. public enum Orientation
  30. {
  31. /// <summary>
  32. /// According to the TrueType specification, clockwise contours must be filled, and counter-clockwise ones must
  33. /// be unfilled.
  34. /// </summary>
  35. TrueType = 0,
  36. /// <summary>
  37. /// According to the PostScript specification, counter-clockwise contours must be filled, and clockwise ones
  38. /// must be unfilled.
  39. /// </summary>
  40. PostScript = 1,
  41. /// <summary>
  42. /// This is identical to <see cref="TrueType"/>, but is used to remember that in TrueType, everything that is
  43. /// to the right of the drawing direction of a contour must be filled.
  44. /// </summary>
  45. FillRight = TrueType,
  46. /// <summary>
  47. /// This is identical to <see cref="PostScript"/>, but is used to remember that in PostScript, everything that
  48. /// is to the left of the drawing direction of a contour must be filled.
  49. /// </summary>
  50. FillLeft = PostScript,
  51. /// <summary>
  52. /// The orientation cannot be determined. That is, different parts of the glyph have different orientation.
  53. /// </summary>
  54. None
  55. }
  56. }