Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:SeeingSharp.Half3" /> structure.
 /// </summary>
 /// <param name="value">The value to set for the X, Y, and Z components.</param>
 public Half3(Half value)
 {
     X = value;
     Y = value;
     Z = value;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:SeeingSharp.Half3" /> structure.
 /// </summary>
 /// <param name="x">The X component.</param>
 /// <param name="y">The Y component.</param>
 /// <param name="z">The Z component.</param>
 public Half3(Half x, Half y, Half z)
 {
     X = x;
     Y = y;
     Z = z;
 }