IReadOnlyStrokeJoinable.cs 297 B

12345678910
  1. using Drawie.Backend.Core.Surfaces.PaintImpl;
  2. using Drawie.Backend.Core.Vector;
  3. namespace PixiEditor.ChangeableDocument.Changeables.Graph.Interfaces.Shapes;
  4. public interface IReadOnlyStrokeJoinable
  5. {
  6. public StrokeJoin StrokeLineJoin { get; }
  7. public StrokeCap StrokeLineCap { get; }
  8. }