double convert(Unit from, Unit to) { if (from == to) { return this; } return Dimension.auto(this, from).in_(to); }