using System.Collections.Generic;
namespace xAPI.Registry {
///
/// Provides 5 items of the xAPI_Verbs of the context gestures as public properties.
///
public sealed class xAPI_Verbs_Gestures : xAPI_Verbs {
///
/// An actor has gazed a part of her body in a direction.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/verbs/gazed
///
public readonly xAPI_Verb gazed = new xAPI_Verb(
context: "gestures",
key: "gazed",
names: new Dictionary {
["en-US"] = "gazed",
["de-DE"] = "richtete aus" },
descriptions: new Dictionary {
["en-US"] = "An actor has gazed a part of her body in a direction.",
["de-DE"] = "Eine Akteurin richtete ihr Körperteil in eine Richtung aus." });
///
/// An actor has gestured with part of her body (e.g. hands, feets, ...).
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/verbs/gestured
///
public readonly xAPI_Verb gestured = new xAPI_Verb(
context: "gestures",
key: "gestured",
names: new Dictionary {
["en-US"] = "gestured",
["de-DE"] = "gestikulierte" },
descriptions: new Dictionary {
["en-US"] = "An actor has gestured with part of her body (e.g. hands, feets, ...).",
["de-DE"] = "Eine Akteurin gestikulierte mit einem ihrer Körperteile (z.B. Hände, Füße, ...)." });
///
/// An actor has nodded with her head. Could be collected by computation of headset movement or a webcam or by hand annotation.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/verbs/nodded
///
public readonly xAPI_Verb nodded = new xAPI_Verb(
context: "gestures",
key: "nodded",
names: new Dictionary {
["en-US"] = "nodding",
["de-DE"] = "nickte" },
descriptions: new Dictionary {
["en-US"] = "An actor has nodded with her head. Could be collected by computation of headset movement or a webcam or by hand annotation.",
["de-DE"] = "Eine Akteurin nickte mit ihrem Kopf. Könnte zum Beispiel erkannt worden sein, indem Headset Daten ausgewertet wurden, eine Erkennung in einem Video geschehen ist oder durch eine händische Annotation." });
///
/// An actor performed something, e.g. a gesture
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/verbs/performed
///
public readonly xAPI_Verb performed = new xAPI_Verb(
context: "gestures",
key: "performed",
names: new Dictionary {
["en-US"] = "performed",
["de-DE"] = "verrichtete" },
descriptions: new Dictionary {
["en-US"] = "An actor performed something, e.g. a gesture",
["de-DE"] = "Ein Akteur hat etwas getan, z.B. eine Geste verrichtet." });
///
/// An actor has shaked something, for example a part of her body.
/// URI: https://xapi.elearn.rwth-aachen.de/definitions/gestures/verbs/shaked
///
public readonly xAPI_Verb shaked = new xAPI_Verb(
context: "gestures",
key: "shaked",
names: new Dictionary {
["en-US"] = "shaked",
["de-DE"] = "schüttelte" },
descriptions: new Dictionary {
["en-US"] = "An actor has shaked something, for example a part of her body.",
["de-DE"] = "Eine Akteurin schüttelte etwas, zum Beispiel einen Körperteil wie ihren Kopf." });
public xAPI_Verbs_Gestures()
: base("gestures") {
}
}
}