Removing ToDouble()

This commit is contained in:
BobLd
2019-08-10 13:52:01 +01:00
parent bd58879e32
commit 9b24223190

View File

@@ -82,14 +82,6 @@
return new PdfVector(X, Y);
}
/// <summary>
/// Converts this <see cref="PdfPoint"/> into an double array.
/// </summary>
public double[] ToDouble()
{
return new double[] { (double)this.X, (double)this.Y };
}
/// <summary>
/// Returns a value indicating whether this <see cref="PdfPoint"/> is equal to a specified <see cref="PdfPoint"/> .
/// </summary>