Constructor

	Gradient(start: Number, final: Number, steps: Number)
	
		Generates an instance of Gradient.
		
			start start color
			final final color
			steps amount of steps for the effect
		
	


Methods

	Gradient.getColorAt(step: Number): String
	
		Retrieves the color at the given step in hexadecimal.
		
			step desired step, the maximum value is the "steps" argument of the constructor - 1
		
	

	Gradient.next(void): Object
	
		Increments the current step of the class and retrieves the color as String, or false when it reachs the end.
	

	Gradient.reset(void): void
	
		Resets the current step of the class.
	
