Esempio n. 1
0
 /// <summary>
 /// Overload for creating from parsable text
 /// </summary>
 /// <remarks>The struct is used to prevent confusion with another overload of a class's constructor that may accept a string</remarks>
 /// <param name="data"></param>
 public Quaternion(ParsedData data)
     : this(data.Text)
 {
 }
Esempio n. 2
0
 public Vector4(ParsedData data)
     : this(data.Text)
 {
 }