Glare.ExtensionMethods.ReadVector2d C# (CSharp) Method

ReadVector2d() public static method

Read a Vector2d.
public static ReadVector2d ( this reader ) : Vector2d
reader this
return Vector2d
        public static Vector2d ReadVector2d(this BinaryReader reader )
        {
            Vector2d result;
                                        result.X = reader.ReadDouble();
                                        result.Y = reader.ReadDouble();
                    return result;
        }

Same methods

ExtensionMethods::ReadVector2d ( this reader, Vector2d &result ) : void
ExtensionMethods