Studio.Effect.Gradient = function(){};

Studio.Effect.Gradient.prototype = 
{
    sColor1 : "",
    sColor2 : "",
    iAngle  : 0,
    
    getUrlAttach : function()
    {
        var sUrl = '';
        sUrl += 'effect_gradient/1/';
        sUrl += 'gradient_color1/'  + new RGBColor(this.sColor1).toHex() + '/';
        sUrl += 'gradient_color2/'  + new RGBColor(this.sColor2).toHex() + '/';
        sUrl += 'gradient_angle/'   + this.iAngle   + '/';
        return sUrl;
    }
};