double notZero([double alt = 0.00001]) { if (this == 0) { return alt; } else { return this.toDouble(); } }