Emotiv.EdkDll.IS_FacialExpressionGetClenchExtent C# (CSharp) Method

IS_FacialExpressionGetClenchExtent() public static method

public static IS_FacialExpressionGetClenchExtent ( IntPtr state ) : System.Single
state System.IntPtr
return System.Single
        public static Single IS_FacialExpressionGetClenchExtent(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionGetClenchExtent(state);
        }

Usage Example

示例#1
0
 /// <summary>
 /// Returns the clench extent of the user (Obsolete function)
 /// </summary>
 /// <returns>clench extent value (0.0 to 1.0)</returns>
 public Single FacialExpressionGetClenchExtent()
 {
     return(EdkDll.IS_FacialExpressionGetClenchExtent(hEmoState));
 }
EdkDll