Enum Class AffineTransformType

java.lang.Object
java.lang.Enum<AffineTransformType>
net.paulhertz.pixelaudio.AffineTransformType
All Implemented Interfaces:
Serializable, Comparable<AffineTransformType>, Constable

public enum AffineTransformType extends Enum<AffineTransformType>
Standard orientation ("NADA") for PixelMapGen puts the start point at (0,0). A Hilbert curve starts at (0,0) and ends at (width-1, 0). A DiagonalZigzag curve starts at (0,0) and ends at (width, height). See the PixelMapGen child classes for details. Naming follows computer graphics conventions where 0 degrees points right and positive rotation is counterclockwise.
   NADA         no operation
   R270         rotate 90 degrees clockwise
   ROT180       rotate 180 degrees
   R90          rotate 90 degrees counterclockwise
   FLIPX        reflect on y-axis, y coordinates do not change
   FX270        reflect on y-axis, then rotate 90 clockwise = reflect on the secondary diagonal, upper left to lower right, secondary diagonal does not change
   FLIPY        reflect on x-axis, x coordinates do not change
   FX90         reflect on y-axis, then rotate 90 counterclockwise = reflect on the primary diagonal, upper right to lower left, primary diagonal does not change
  
See Also:
  • Enum Constant Details

  • Constructor Details

    • AffineTransformType

      private AffineTransformType()
  • Method Details

    • values

      public static AffineTransformType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AffineTransformType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null