Emotiv.EdkDll.IS_FacialExpressionIsLeftWink C# (CSharp) Method

IS_FacialExpressionIsLeftWink() public static method

public static IS_FacialExpressionIsLeftWink ( IntPtr state ) : System.Boolean
state System.IntPtr
return System.Boolean
        public static Boolean IS_FacialExpressionIsLeftWink(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionIsLeftWink(state);
        }

Usage Example

示例#1
0
 /// <summary>
 /// Query whether the user is winking left at the time the EmoState is captured.
 /// </summary>
 /// <returns>left wink status (true: wink, false: not wink)</returns>
 public Boolean FacialExpressionIsLeftWink()
 {
     return(EdkDll.IS_FacialExpressionIsLeftWink(hEmoState));
 }
EdkDll