File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ public protocol BezierPathRenderable: BezierPathRepresentable {
66 var strokeLineWidth : Real { get set }
77 var strokeLineCap : LineCap { get set }
88 var strokeLineJoin : LineJoin { get set }
9- var miterLimit : Real { get set }
10- var flatness : Real { get set }
9+ var strokeMiterLimit : Real { get set }
10+ var strokeFlatness : Real { get set }
1111
12- mutating func setLineDash ( _ pattern: [ Real ] , phase: Real )
12+ mutating func setStrokeLineDash ( _ pattern: [ Real ] , phase: Real )
1313}
1414
1515extension BezierPathRenderable {
@@ -18,7 +18,7 @@ extension BezierPathRenderable {
1818 strokeLineWidth = other. strokeLineWidth
1919 strokeLineCap = other. strokeLineCap
2020 strokeLineJoin = other. strokeLineJoin
21- miterLimit = other. miterLimit
22- flatness = other. flatness
21+ strokeMiterLimit = other. strokeMiterLimit
22+ strokeFlatness = other. strokeFlatness
2323 }
2424}
You can’t perform that action at this time.
0 commit comments