C# Class Tango.AreaDescription.Metadata

Easy access to the metadata fields for an Area Description. If you want to look at a specific Area Description's metadata, get it with AreaDescription.GetMetadata and save it with AreaDescription.SaveMetadata. If you want to create a metadata for a not yet saved Area Description, use the default constructor to construct an empty metadata and save it after saving the Area Description.
Mostrar archivo Open project: ashomk/beerpong Class Usage Examples

Public Properties

Property Type Description
m_dateTime System.DateTime
m_name string
m_transformationPosition double[]
m_transformationRotation double[]

Property Details

m_dateTime public_oe property

The creation date of this Area Description. Corresponds to the "date_ms_since_epoch" metadata.
public DateTime,System m_dateTime
return System.DateTime

m_name public_oe property

The human-readable name for this Area Description. Corresponds to the "name" metadata.
public string m_name
return string

m_transformationPosition public_oe property

The global coordinate system position of this Area Description. Corresponds to the X, Y, Z part of the "transformation" metadata.
public double[] m_transformationPosition
return double[]

m_transformationRotation public_oe property

The global coordinate system rotation of this Area Description. Corresponds to the QX, QY, QZ, QW part of the "transformation" metadata.
public double[] m_transformationRotation
return double[]