Function conformal_map_mobius
Source pub fn conformal_map_mobius(
z: Complex,
a: Complex,
b: Complex,
c: Complex,
d: Complex,
) -> Complex
Expand description
Möbius (linear fractional) transformation: w = (a·z + b) / (c·z + d).
Maps circles/lines to circles/lines and preserves angles (conformal).
§Arguments
z - input complex coordinate
a, b, c, d - complex coefficients (ad − bc ≠ 0)
§Returns
Mapped complex coordinate.