Gestion Fichiers

This commit is contained in:
MarcEricMartel
2023-05-03 11:26:33 -04:00
parent 5ce0a50ae1
commit c494485a05
2 changed files with 55 additions and 6 deletions

View File

@@ -43,6 +43,11 @@ namespace JeuHoy_WPF_Natif.Model {
_rep = reponse;
}
public Squelette(double[] body, string reponse) {
_sque = body;
_rep = reponse;
}
private Point GetPoint(KinectSensor sensor, CameraSpacePoint position, Vector trans) {
Point point = new System.Windows.Point();
@@ -57,7 +62,5 @@ namespace JeuHoy_WPF_Natif.Model {
return Point.Subtract(point, trans);
}
}
}