Emotiv.EdkDll.IS_MentalCommandGetCurrentActionPower C# (CSharp) Method

IS_MentalCommandGetCurrentActionPower() public static method

public static IS_MentalCommandGetCurrentActionPower ( IntPtr state ) : System.Single
state System.IntPtr
return System.Single
        public static Single IS_MentalCommandGetCurrentActionPower(IntPtr state)
        {
            return Unmanaged_IS_MentalCommandGetCurrentActionPower(state);
        }

Usage Example

コード例 #1
0
 /// <summary>
 /// Returns the detected Cognitiv action power of the user
 /// </summary>
 /// <returns>Cognitiv action power (0.0 to 1.0)</returns>
 public Single MentalCommandGetCurrentActionPower()
 {
     return(EdkDll.IS_MentalCommandGetCurrentActionPower(hEmoState));
 }
EdkDll