* Vector4.cs: Fixed doc comment to refer to the single-precision

version of the structure, rather than the double-precision one.
This commit is contained in:
the_fiddler 2010-11-24 21:15:38 +00:00
parent 0153acb799
commit 8677320714

View file

@ -140,7 +140,7 @@ namespace OpenTK
/// The w component is initialized to 0.
/// </summary>
/// <param name="v">The Vector3 to copy components from.</param>
/// <remarks><seealso cref="Vector4(Vector3d, double)"/></remarks>
/// <remarks><seealso cref="Vector4(Vector3, float)"/></remarks>
public Vector4(Vector3 v)
{
X = v.X;