Emotiv.EdkDll.IS_FacialExpressionIsLookingLeft C# (CSharp) Method

IS_FacialExpressionIsLookingLeft() public static method

public static IS_FacialExpressionIsLookingLeft ( IntPtr state ) : Int32
state System.IntPtr
return System.Int32
        public static Int32 IS_FacialExpressionIsLookingLeft(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionIsLookingLeft(state);
        }

Usage Example

Exemplo n.º 1
0
 /// <summary>
 /// Query whether the user is looking left at the time the EmoState is captured with EPOC/EPOC+ headset.
 /// </summary>
 /// <returns>return eye position (1: looking left, 0: not looking left)</returns>
 public Int32 FacialExpressionIsLookingLeft()
 {
     return(EdkDll.IS_FacialExpressionIsLookingLeft(hEmoState));
 }
EdkDll