Class StudyData
Represents the data about a data set. This is part of the model for the xml config files used by MIRIA.
Inheritance
System.Object
StudyData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: IMLD.MixedRealityAnalysis.Core
Assembly: Assembly-CSharp.dll
Syntax
public class StudyData
Properties
Anchors
Gets or sets the System.Collections.Generic.List<T> of anchors.
Declaration
public List<VisAnchor> Anchors { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<VisAnchor> |
AxisDirectionX
Gets or sets the direction of the x-axis. The default is "right".
Declaration
public string AxisDirectionX { get; set; }
Property Value
Type | Description |
---|---|
System.String |
AxisDirectionY
Gets or sets the direction of the y-axis. The default is "up".
Declaration
public string AxisDirectionY { get; set; }
Property Value
Type | Description |
---|---|
System.String |
AxisDirectionZ
Gets or sets the direction of the z-axis. The default is "forward".
Declaration
public string AxisDirectionZ { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Conditions
Gets or sets the list of study conditions (e.g., techniques).
Declaration
public List<string> Conditions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Id
Gets or sets the id of this data set.
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
This field is not serialized.
MediaSources
Gets or sets the list of media sources.
Declaration
public List<MediaSource> MediaSources { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<MediaSource> |
Objects
Gets or sets the list of objects.
Declaration
public List<StudyObject> Objects { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<StudyObject> |
ObjectSources
Gets or sets the list of object sources.
Declaration
public List<ObjectSource> ObjectSources { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ObjectSource> |
Sessions
Gets or sets the list of study sessions.
Declaration
public List<Session> Sessions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Session> |
StudyName
Gets or sets the name of the study.
Declaration
public string StudyName { get; set; }
Property Value
Type | Description |
---|---|
System.String |