use crate::*;
pub fn body_emoji(body: &Body) -> String {
use Body::*;
match body {
Sun => "☉".to_owned() ,
Moon => "☽".to_owned() ,
Mercury => "☿".to_owned() ,
Venus => "♀".to_owned() ,
Mars => "♂".to_owned() ,
Jupiter => "♃".to_owned() ,
Saturn => "♄".to_owned() ,
Uranus => "♅".to_owned() ,
Neptune => "♆".to_owned() ,
Pluto => "♇".to_owned() ,
MeanNode => "☊".to_owned() ,
TrueNode => "".to_owned() ,
MeanApog => "⚸".to_owned() ,
OscuApog => "⯞".to_owned() ,
Earth => "🜨︎".to_owned() ,
Chiron => "⚷".to_owned(),
Pholus => "⯛".to_owned(),
Ceres => "⚳".to_owned() ,
Pallas => "⚴".to_owned() ,
Juno => "⚵".to_owned() ,
Vesta => "⚶".to_owned() ,
Cupido => "⯠".to_owned(),
Hades => "⯡".to_owned(),
Zeus => "⯢".to_owned(),
Kronos => "⯣".to_owned(),
Apollon => "⯤".to_owned(),
Admetos => "⯥".to_owned(),
Vulkanus => "⯦".to_owned(),
Poseidon => "⯧".to_owned(),
Astraea => "%,".to_owned(),
Hygiea => "⯚".to_owned(),
Nessus => "⯜".to_owned(),
_ => "todo".to_owned()
}
}