Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 246 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 246 Bytes

Domain-coloring

Domain coloring in Rust

 sin(1/z) 

img

 sin((z - 1.) / (z + 1.)).powi(3)

img

    ((z * z - 1.) * (z - 2. - Complex::i()).powi(2)) / (z * z + 2. + 2. * Complex::i())

img