Glare.ExtensionMethods.ReadArrayVector3f C# (CSharp) Method

ReadArrayVector3f() public static method

Read an array of Vector3f values.
public static ReadArrayVector3f ( this reader, int count ) : Vector3f[]
reader this
count int
return Vector3f[]
        public static Vector3f[] ReadArrayVector3f(this BinaryReader reader, int count)
        {
            Vector3f[] array = new Vector3f[count]; reader.ReadArray(array, 0, count); return array;
        }
ExtensionMethods