This commit is contained in:
Jason Nelson 2018-08-24 09:43:15 -07:00
Родитель 707c66e429
Коммит ce41cad134
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -166,7 +166,7 @@ namespace SixLabors.Shapes
/// </returns>
public int FindIntersections(PointF start, PointF end, PointF[] buffer, int offset)
{
return this.InnerPath.FindIntersections(start, end, buffer);
return this.InnerPath.FindIntersections(start, end, buffer.AsSpan(offset));
}
/// <inheritdoc />