some improvments
This commit is contained in:
@@ -89,9 +89,9 @@ func NewCubicBezierPath() CubicBezierPath {
|
||||
return bpath
|
||||
}
|
||||
|
||||
func (this CubicBezierPath) AppendCurve(curve CubicBezierCurve) CubicBezierPath {
|
||||
this.Curves = append(this.Curves, curve)
|
||||
return this
|
||||
func (c CubicBezierPath) AppendCurve(curve CubicBezierCurve) CubicBezierPath {
|
||||
c.Curves = append(c.Curves, curve)
|
||||
return c
|
||||
}
|
||||
|
||||
func (bpath CubicBezierPath) Copy() CubicBezierPath {
|
||||
|
||||
Reference in New Issue
Block a user