public static Shape CreateBox(LeapVector3 halfSize, float radius) { return new Shape(Native.CreateBoxShape(halfSize.ToNative(), radius)); }
public void Set(LeapVector3 v, LeapQuaternion q) { Position = v; Rotation = q; }
internal LeapTransform(Native.Transform t) { Position = new LeapVector3(t.pos); Rotation = new LeapQuaternion(t.rot); }
public LeapTransform(LeapVector3 v, LeapQuaternion q) { Position = v; Rotation = q; }
public static Shape CreateBox(LeapVector3 halfSize, float radius) { return(new Shape(Native.CreateBoxShape(halfSize.ToNative(), radius))); }