Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package kha.vr;
import kha.math.Vector3;
// Full pose (rigid body) configuration with first and second derivatives.
class PoseState {
public var Pose: Pose;
public var AngularVelocity: Vector3;
public var LinearVelocity: Vector3;
public var AngularAcceleration: Vector3;
public var LinearAcceleration: Vector3;
public var TimeInSeconds: Float; // Absolute time of this state sample.
public function new() {}
}