// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.ImageSharp.Drawing {
///
/// Returns metadata about the point along a path.
///
public readonly struct SegmentInfo
{
///
/// Gets the point on the path
///
public PointF Point { get; init; }
///
/// Gets the angle of the segment. Measured in radians.
///
public float Angle { get; init; }
}
}