Created
February 26, 2019 14:05
-
-
Save matux/fc6419bcec31745712b49b1ea35bd43a to your computer and use it in GitHub Desktop.
Mandelbrot fractal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import func Darwin.sin | |
import func Darwin.cos | |
import Swift | |
public typealias β€ = Int | |
public typealias β = Double | |
public typealias β = Complex | |
public func Οmap(_ Ο: β€) -> String { | |
switch Ο { | |
case 41... : return " " | |
case 7... : return "." | |
case 5... : return "+" | |
case 3... : return "*" | |
case _ : return "#" | |
} | |
} | |
extension BinaryFloatingPoint { | |
func signum() -> Self { | |
return Self(signOf: self, magnitudeOf: self == 0 || isNaN ? 0 : 1) | |
} | |
public var abs: Self { | |
return self * signum() | |
} | |
} | |
public struct Complex { | |
public var β: β | |
public var β: β | |
public var abs: β { return β * β + β * β } | |
public init() { (β, β) = (0, 0) } | |
public init(r: β, i: β) { (β, β) = (r, i) } | |
public init(x: β, ΞΈ: β) { (β, β) = (x * cos(ΞΈ), x * sin(ΞΈ)) } | |
public static func + (lhs: β, rhs: β) -> β { | |
return β(r: lhs.β + rhs.β, i: lhs.β + rhs.β) | |
} | |
public static func * (lhs: β, rhs: β) -> β { | |
return β(r: lhs.β * rhs.β - lhs.β * rhs.β, | |
i: lhs.β * rhs.β + lhs.β * rhs.β) | |
} | |
} | |
import Swift | |
func print(fractal Ζc: (_ c: β) -> β€, x: (β, β), y: (β, β)) { | |
var Ξ: (β, β) = ((x.1 - x.0) / 40, (y.1 - y.0) / 80) | |
for x in stride(from: x.0, to: x.1, by: Ξ.0) { | |
for y in stride(from: y.0, to: y.1, by: Ξ.1) { | |
let Ο = Οmap(Ζc(β(r: y, i: x))) | |
print(Ο, terminator: "") | |
} | |
print() | |
} | |
} | |
/// ππ(zβββ) = π§Β²+π, zβ=0 | |
func mandelbrot(_ c: β) -> β€ { | |
var (it, z) = (0, β()) | |
while (it < 200 && z.abs < 4.0) { | |
z = z * z + c | |
it += 1 | |
} | |
return it | |
} | |
/// ππ(zβββ) = (βπ π(π§β)β+πβπΌπ(π§β)β)Β²+π, zβ=0 | |
func burningShip(_ c: β) -> β€ { | |
var (it, z) = (0, β()) | |
while (it < 200 && z.abs < 4.0) { | |
let zβ = β(r: z.β.abs, i: z.β.abs) | |
z = zβ * zβ + c | |
it += 1 | |
} | |
return it | |
} | |
print(fractal: mandelbrot, x: (-1.35, 1.40), y: (-2.00, 1.05)) | |
print(" Β· mandelbrot Β·\n") | |
print(fractal: burningShip, x: (-2.00, 1.20), y: (-2.10, 1.20)) | |
print(" Β· burning ship Β·\n") | |
// ################################################################################# | |
// ##############################********************############################### | |
// ########################********************************######################### | |
// ####################***************************+++**********##################### | |
// #################****************************++...+++**********################## | |
// ##############*****************************++++......+************############### | |
// ############******************************++++.......+++************############# | |
// ##########******************************+++++.... ...++++************########### | |
// ########******************************+++++.... ..++++++**********########## | |
// #######****************************+++++....... .....++++++**********######## | |
// ######*************************+++++....... . .. ............++*********####### | |
// #####*********************+++++++++... .. . ... ..++*********###### | |
// ####******************++++++++++++..... ..++**********##### | |
// ###***************++++++++++++++... . ...+++**********#### | |
// ##**************+++................. ....+***********### | |
// ##***********+++++................. .++***********### | |
// #**********++++++..... ..... ..++***********### | |
// #*********++++++...... . ..++************## | |
// #*******+++++....... ..+++************## | |
// #++++............ ...+++************## | |
// #++++............ ...+++************## | |
// #******+++++........ ..+++************## | |
// #********++++++..... . ..++************## | |
// #**********++++++..... .... .++************## | |
// #************+++++................. ..++***********### | |
// ##*************++++................. . ..+***********### | |
// ###***************+.+++++++++++..... ....++**********#### | |
// ###******************+++++++++++++..... ...+++*********##### | |
// ####*********************++++++++++.... .. ..++*********###### | |
// #####*************************+++++........ . . . .......+*********####### | |
// #######***************************+++.......... .....+++++++*********######## | |
// ########*****************************++++++.... ...++++++**********######### | |
// ##########*****************************+++++..... ....++++***********########### | |
// ###########******************************+++++........+++***********############# | |
// #############******************************++++.. ...++***********############### | |
// ################****************************+++...+++***********################# | |
// ###################***************************+.+++**********#################### | |
// #######################**********************************######################## | |
// ############################************************############################# | |
// ################################################################################# | |
// Β· mandelbrot Β· | |
// ################################################################################# | |
// ################################################################################# | |
// ################################################################################# | |
// #####################################################################*****####### | |
// ################################################################*******+...+*#### | |
// #############################################################**********+...****## | |
// ###########################################################************. .+****## | |
// #########################################################***********++....+.****# | |
// ######################################################************+++......++***# | |
// ##############################*******************###************..... .....+++++# | |
// ########################*******+++*******************+ .+++++ . . ........+*# | |
// ####################**********+.. .+++*******+.+++**+. .....+.+**# | |
// #################**********++++...+...++ .. . . .+ ...+++++.***# | |
// ##############***********++..... . ... . ...++++++****## | |
// ############*************....... . . ...+++********## | |
// ##########***************. .. ...+++*********## | |
// #########***************++. .. . . ...+++*********### | |
// #######*****************. ... ...+++**********### | |
// ######*****************+. ...+++**********#### | |
// #####****************+++ . .....++***********#### | |
// #####**********++..... . ....+++***********#### | |
// ####*********+++.. . ....+++***********##### | |
// ####********++++. ....+++***********##### | |
// ###*******++++. ...++++***********##### | |
// ###**++*+..+... ...+++************##### | |
// ### ...+++************##### | |
// ###*********+++++++++......... ...... ..++************##### | |
// ####****************++++++.................... .++***********###### | |
// #####********************++++++++++++++++........ .+***********###### | |
// ########****************************+++++++++....... ++***********###### | |
// ###########*******************************++++++...... ..++**********####### | |
// ###############*******************************+++++.........++++*********######## | |
// ####################****************************++++++++++++++**********######### | |
// ##########################*************************+++++++++***********########## | |
// ################################**************************************########### | |
// ####################################********************************############# | |
// ########################################***************************############## | |
// ###########################################**********************################ | |
// #############################################*****************################### | |
// ################################################***********###################### | |
// Β· burning ship Β· | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment