mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.9 KiB
65 lines
1.9 KiB
// <copyright file="ShapeRegion.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageSharp.Drawing
|
|
{
|
|
using System;
|
|
using System.Buffers;
|
|
using System.Numerics;
|
|
|
|
using SixLabors.Shapes;
|
|
|
|
using Rectangle = ImageSharp.Rectangle;
|
|
|
|
/// <summary>
|
|
/// A mapping between a <see cref="IPath"/> and a region.
|
|
/// </summary>
|
|
internal class ShapeRegion : Region
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ShapeRegion"/> class.
|
|
/// </summary>
|
|
/// <param name="shape">The shape.</param>
|
|
public ShapeRegion(IPath shape)
|
|
{
|
|
this.Shape = shape.AsClosedPath();
|
|
this.Bounds = shape.Bounds.Convert();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the fillable shape
|
|
/// </summary>
|
|
public IPath Shape { get; }
|
|
|
|
/// <inheritdoc/>
|
|
public override int MaxIntersections => this.Shape.MaxIntersections;
|
|
|
|
/// <inheritdoc/>
|
|
public override Rectangle Bounds { get; }
|
|
|
|
/// <inheritdoc/>
|
|
public override int Scan(float y, Span<float> buffer)
|
|
{
|
|
Vector2 start = new Vector2(this.Bounds.Left - 1, y);
|
|
Vector2 end = new Vector2(this.Bounds.Right + 1, y);
|
|
Vector2[] innerbuffer = ArrayPool<Vector2>.Shared.Rent(buffer.Length);
|
|
try
|
|
{
|
|
int count = this.Shape.FindIntersections(start, end, innerbuffer, buffer.Length, 0);
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
buffer[i] = innerbuffer[i].X;
|
|
}
|
|
|
|
return count;
|
|
}
|
|
finally
|
|
{
|
|
ArrayPool<Vector2>.Shared.Return(innerbuffer);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|