Interface IPathCollection
- Namespace
- SixLabors.ImageSharp.Drawing
- Assembly
- SixLabors.ImageSharp.Drawing.dll
Represents a collection of paths that can be enumerated and transformed as a single unit.
public interface IPathCollection : IEnumerable<IPath>, IEnumerable
- Inherited Members
- Extension Methods
Properties
Bounds
Gets the bounds enclosing all paths in the collection.
RectangleF Bounds { get; }
Property Value
Methods
Transform(Matrix4x4)
Transforms all paths in the collection using the specified matrix.
IPathCollection Transform(Matrix4x4 matrix)
Parameters
matrixMatrix4x4The transformation matrix.
Returns
- IPathCollection
A new path collection with the matrix applied to it.