Emotiv.EdkDll.IS_FacialExpressionGetEyebrowExtent C# (CSharp) Method

IS_FacialExpressionGetEyebrowExtent() public static method

public static IS_FacialExpressionGetEyebrowExtent ( IntPtr state ) : System.Single
state System.IntPtr
return System.Single
        public static Single IS_FacialExpressionGetEyebrowExtent(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionGetEyebrowExtent(state);
        }

Usage Example

コード例 #1
0
 /// <summary>
 /// Returns the eyebrow extent of the user (Obsolete function)
 /// </summary>
 /// <returns>eyebrow extent value (0.0 to 1.0)</returns>
 public Single FacialExpressionGetEyebrowExtent()
 {
     return(EdkDll.IS_FacialExpressionGetEyebrowExtent(hEmoState));
 }
EdkDll