Glare.ExtensionMethods.ReadVector3d C# (CSharp) Method

ReadVector3d() public static method

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

Same methods

ExtensionMethods::ReadVector3d ( this reader, Vector3d &result ) : void
ExtensionMethods