示例#1
0
 public void Read(BinaryReader reader)
 {
     JointType = (TJointType)reader.ReadInt32();
     Position  = new TSkeletonPoint();
     Position.Read(reader);
     TrackingState = (TJointTrackingState)reader.ReadInt32();
 }
示例#2
0
文件: TJoint.cs 项目: Styrna/TKinect
 public void Read(BinaryReader reader)
 {
     JointType = (TJointType)reader.ReadInt32();
     Position = new TSkeletonPoint();
     Position.Read(reader);
     TrackingState = (TJointTrackingState)reader.ReadInt32();
 }
示例#3
0
 public TJoint(Joint joint)
 {
     JointType     = (TJointType)joint.JointType;
     Position      = new TSkeletonPoint(joint.Position);
     TrackingState = (TJointTrackingState)joint.TrackingState;
 }