コード例 #1
0
 public BoundingBox3D GetPosition(uint index)
 {
     BoundingBox3D pos = new BoundingBox3D();
     UInt32 status = OpenNIImporter.xnGetUserPosition(this.InternalObject, index, ref pos);
     WrapperUtils.CheckStatus(status);
     return pos;
 }
コード例 #2
0
 public void SetPosition(uint index, BoundingBox3D pos)
 {
     UInt32 status = OpenNIImporter.xnSetUserPosition(this.InternalObject, index, ref pos);
     WrapperUtils.CheckStatus(status);
 }
コード例 #3
0
ファイル: OpenNIImporter.cs プロジェクト: roxlu/OpenNI
 public static extern XnStatus xnGetUserPosition(XnNodeHandle hInstance, XnUInt32 nIndex, ref BoundingBox3D pPosition);
コード例 #4
0
 public void AddGesture(string strGesture, BoundingBox3D area)
 {
     UInt32 status = OpenNIImporter.xnAddGesture(InternalObject, strGesture, ref area);
     WrapperUtils.CheckStatus(status);
 }
コード例 #5
0
ファイル: OpenNIImporter.cs プロジェクト: roxlu/OpenNI
 public static extern XnStatus xnAddGesture(XnNodeHandle hInstance, string strGesture, ref BoundingBox3D pArea);