make OrientedBoundingBox public

This commit is contained in:
BobLd
2020-03-16 09:54:22 +00:00
committed by Eliot Jones
parent 4ed1600cab
commit 5f0ddf131e

View File

@@ -178,7 +178,7 @@
/// then rotating the points to obtain the axis-aligned bounding box (AABB), and then rotating back the AABB.
/// </summary>
/// <param name="points">The points.</param>
internal static PdfRectangle OrientedBoundingBox(IReadOnlyList<PdfPoint> points)
public static PdfRectangle OrientedBoundingBox(IReadOnlyList<PdfPoint> points)
{
if (points == null || points.Count < 2)
{