@nodert-win10-cu/windows.perception.people
Version:
Use the Windows.Perception.People UWP API directly from Node.js
25 lines (18 loc) • 465 B
JavaScript
Vector3 = (function () {
var cls = function Vector3() {
this.x = new Number();
this.y = new Number();
this.z = new Number();
};
return cls;
}) ();
exports.Vector3 = Vector3;
HeadPose = (function () {
var cls = function HeadPose() {
this.forwardDirection = new Vector3();
this.position = new Vector3();
this.upDirection = new Vector3();
};
return cls;
}) ();
exports.HeadPose = HeadPose;