ColorGradient.closeEnough C# (CSharp) Méthode

closeEnough() private méthode

private closeEnough ( float first, float second ) : bool
first float
second float
Résultat bool
	bool closeEnough(float first, float second){
		if(first <= second + 0.1f && first >= second - 0.1f){
			return true;
		}
		return false;
	}