Enumeration TransformMatrixType
TransformMatrixType
describes the transform matrix types.
- JavaScript
- Android
- Objective-C
- Swift
- C++
enum EnumTransformMatrixType { /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/ TMT_LOCAL_TO_ORIGINAL_IMAGE, /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/ TMT_ORIGINAL_TO_LOCAL_IMAGE }
public @interface EnumTransformMatrixType { /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/ int TMT_LOCAL_TO_ORIGINAL_IMAGE = 0; /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/ int TMT_ORIGINAL_TO_LOCAL_IMAGE = 1; /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/ int TMT_ROTATED_TO_ORIGINAL_IMAGE = 2; /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/ int TMT_ORIGINAL_TO_ROTATED_IMAGE = 3; }
typedef NS_ENUM(NSInteger, DSTransformMatrixType) { /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/ DSTransformMatrixTypeLocalToOriginalImage = 0, /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/ DSTransformMatrixTypeOriginalToLocalImage = 1, /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/ DSTransformMatrixTypeRotatedToOriginalImage = 2, /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/ DSTransformMatrixTypeOriginalToRotatedImage = 3 }NS_SWIFT_NAME(TransformMatrixType);
public enum TransformMatrixType : Int { /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/ localToOriginalImage = 0, /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/ originalToLocalImage = 1, /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/ rotatedToOriginalImage = 2, /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/ originalToRotatedImage = 3 }
typedef enum TransformMatrixType { /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/ TMT_LOCAL_TO_ORIGINAL_IMAGE, /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/ TMT_ORIGINAL_TO_LOCAL_IMAGE, /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/ TMT_ROTATED_TO_ORIGINAL_IMAGE, /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/ TMT_ORIGINAL_TO_ROTATED_IMAGE } TransformMatrixType;