(context, tension)
| 125957 | that._context.bezierCurveTo(that._x1 + that._k * (that._x2 - that._x0), that._y1 + that._k * (that._y2 - that._y0), that._x2 + that._k * (that._x1 - x), that._y2 + that._k * (that._y1 - y), that._x2, that._y2); |
| 125958 | } |
| 125959 | function Cardinal(context, tension) { |
| 125960 | this._context = context; |
| 125961 | this._k = (1 - tension) / 6; |
| 125962 | } |
| 125963 | Cardinal.prototype = { |
| 125964 | areaStart: function() { |
| 125965 | this._line = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected