Schnittstelle TransformCategory


public interface TransformCategory
  • Feldübersicht

    Felder
    Modifizierer und Typ
    Feld
    Beschreibung
    static final int
    The matrix is a 2D matrix.
    static final int
    The matrix is a combination of 2D scale
    and 2D translation operations.
    static final int
    The matrix is a 2D translation.
    static final int
    The matrix is a 3D matrix.
    static final int
    Analyzing the matrix concluded that it does
    not fit in any other category.
    static final int
    The matrix is the identity matrix.
    static final int
    The category of the matrix has not been
    determined.
  • Felddetails

    • UNKNOWN

      static final int UNKNOWN
      The category of the matrix has not been
      determined.
      Siehe auch:
    • ANY

      static final int ANY
      Analyzing the matrix concluded that it does
      not fit in any other category.
      Siehe auch:
    • _3D

      static final int _3D
      The matrix is a 3D matrix. This means that
      the w column (the last column) has the values (0, 0, 0, 1).
      Siehe auch:
    • _2D

      static final int _2D
      The matrix is a 2D matrix. This is equivalent
      to graphene_matrix_is_2d() returning %TRUE. In particular, this
      means that Cairo can deal with the matrix.
      Siehe auch:
    • _2D_AFFINE

      static final int _2D_AFFINE
      The matrix is a combination of 2D scale
      and 2D translation operations. In particular, this means that any
      rectangle can be transformed exactly using this matrix.
      Siehe auch:
    • _2D_TRANSLATE

      static final int _2D_TRANSLATE
      The matrix is a 2D translation.
      Siehe auch:
    • IDENTITY

      static final int IDENTITY
      The matrix is the identity matrix.
      Siehe auch: