コード例 #1
0
ファイル: Shape.cs プロジェクト: Edudjr/riftbdu
 public static Shape CreateBox(LeapVector3 halfSize, float radius) {
   return new Shape(Native.CreateBoxShape(halfSize.ToNative(), radius));
 }
コード例 #2
0
 public void Set(LeapVector3 v, LeapQuaternion q)
 {
     Position = v; Rotation = q;
 }
コード例 #3
0
 internal LeapTransform(Native.Transform t)
 {
     Position = new LeapVector3(t.pos);
     Rotation = new LeapQuaternion(t.rot);
 }
コード例 #4
0
 public LeapTransform(LeapVector3 v, LeapQuaternion q)
 {
     Position = v; Rotation = q;
 }
コード例 #5
0
ファイル: Math.cs プロジェクト: AjayTalati/BCI_Experiments
 public void Set(LeapVector3 v, LeapQuaternion q)
 {
     Position = v; Rotation = q;
 }
コード例 #6
0
ファイル: Math.cs プロジェクト: AjayTalati/BCI_Experiments
 internal LeapTransform(Native.Transform t)
 {
     Position = new LeapVector3(t.pos);
     Rotation = new LeapQuaternion(t.rot);
 }
コード例 #7
0
ファイル: Math.cs プロジェクト: AjayTalati/BCI_Experiments
 public LeapTransform(LeapVector3 v, LeapQuaternion q)
 {
     Position = v; Rotation = q;
 }
コード例 #8
0
ファイル: Shape.cs プロジェクト: cleebp/TieSim
 public static Shape CreateBox(LeapVector3 halfSize, float radius)
 {
     return(new Shape(Native.CreateBoxShape(halfSize.ToNative(), radius)));
 }