Emotiv.EdkDll.IS_FacialExpressionIsLookingDown C# (CSharp) Method

IS_FacialExpressionIsLookingDown() public static method

public static IS_FacialExpressionIsLookingDown ( IntPtr state ) : System.Boolean
state System.IntPtr
return System.Boolean
        public static Boolean IS_FacialExpressionIsLookingDown(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionIsLookingDown(state);
        }

Usage Example

示例#1
0
 /// <summary>
 /// Query whether the user is looking down at the time the EmoState is captured.
 /// </summary>
 /// <returns>eyes position (true: looking down, false: not looking down)</returns>
 public Boolean FacialExpressionIsLookingDown()
 {
     return(EdkDll.IS_FacialExpressionIsLookingDown(hEmoState));
 }
EdkDll