A simple XYZ representation of a normal (Vertex).
Inheritance: Vertex
Esempio n. 1
0
 /// <summary>Reads a single <see cref="Normal"/> from the <paramref name="reader"/>.</summary>
 /// <param name="reader">The reader which contains a <see cref="Normal"/> to be read at the current position</param>
 public static Normal Read(BinaryReader reader)
 {
     return(Normal.FromVertex(Vertex.Read(reader)));
 }