IReadOnlyPathData.cs 289 B

123456789
  1. using Drawie.Backend.Core.Surfaces.PaintImpl;
  2. using Drawie.Backend.Core.Vector;
  3. namespace PixiEditor.ChangeableDocument.Changeables.Graph.Interfaces.Shapes;
  4. public interface IReadOnlyPathData : IReadOnlyShapeVectorData, IReadOnlyStrokeJoinable
  5. {
  6. public VectorPath Path { get; }
  7. }