paper.js/src/color/GradientStop.js

26 lines
510 B
JavaScript
Raw Normal View History

var GradientStop = this.GradientStop = Base.extend({
beans: true,
// TODO: support midPoint? (initial tests didn't look nice)
initialize: function(color, rampPoint) {
this.setColor(color);
this.setRampPoint(rampPoint);
},
getRampPoint: function() {
return this._rampPoint;
},
setRampPoint: function(rampPoint) {
this._rampPoint = rampPoint !== null ? rampPoint : 0;
},
getColor: function() {
return this._color;
},
setColor: function() {
this._color = Color.read(arguments);
}
2011-03-03 11:32:55 -05:00
});