diff options
Diffstat (limited to 'Tobii EyeX/include/eyex/EyeXConstants.h')
-rwxr-xr-x | Tobii EyeX/include/eyex/EyeXConstants.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Tobii EyeX/include/eyex/EyeXConstants.h b/Tobii EyeX/include/eyex/EyeXConstants.h new file mode 100755 index 0000000..59ce248 --- /dev/null +++ b/Tobii EyeX/include/eyex/EyeXConstants.h @@ -0,0 +1,33 @@ +/*********************************************************************************************************************
+ * Copyright 2013-2014 Tobii Technology AB. All rights reserved.
+ * EyeXConstants.h
+ *********************************************************************************************************************/
+
+#if !defined(__TOBII_TX_CONSTANTS__H__)
+#define __TOBII_TX_CONSTANTS__H__
+
+/*********************************************************************************************************************/
+
+/**
+ * Constants for mask weights.
+ *
+ * @field TX_MASKWEIGHT_NONE:
+ * Use this mask weight to indicate that a region of an interactor has no weight (not interactable).
+ *
+ * @field TX_MASKWEIGHT_DEFAULT:
+ * Use this mask weight to indicate that a region of an interactor has a default weight.
+
+ * @field TX_MASKWEIGHT_HIGH:
+ * Use this mask weight to indicate that a region of an interactor has a high weight (more likely to be interacted with).
+ */
+
+ static const unsigned char None = 0;
+ static const unsigned char Default = 1;
+ static const unsigned char High = 255;
+
+
+/*********************************************************************************************************************/
+
+#endif /* !defined(__TOBII_TX_CONSTANTS__H__) */
+
+/*********************************************************************************************************************/
|