Glare.ExtensionMethods.ReadArrayVector3d C# (CSharp) Method

ReadArrayVector3d() public static method

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