EnumColourClusteringMode
- Android
- Objective-C
- Swift
public class EnumColourClusteringMode { public static final int CCM_AUTO = 1; public static final int CCM_GENERAL_HSV = 2; public static final int CCM_SKIP = 0; }
typedef NS_ENUM(NSInteger, EnumColourClusteringMode) { /** Not supported yet. */ EnumColourClusteringModeAuto = 0x01, /** Clusters colours using the general algorithm based on HSV. Check @ref CCM for available argument settings.*/ EnumColourClusteringModeGeneralHSV = 0x02, /** Skips colour clustering. */ EnumColourClusteringModeSkip = 0x00 };
public enum EnumColourClusteringMode : Int{ /** Not supported yet. */ auto = 0x01 /** Clusters colours using the general algorithm based on HSV. Check @ref CCM for available argument settings.*/ generalHSV = 0x02 /** Skips colour clustering. */ skip = 0x00 }