# file humanbody.rb
# Author: Craig Smith
module HumanBody
HUMAN_DNA = { "head" => nil,
"torso" => "head",
"right arm" => "torso",
"left arm" => "torso",
"right leg" => "torso",
"left leg" => "torso",
"right hand" => "right arm",
"left hand" => "left arm",
"right foot" => "right leg",
"left foot" => "left leg"
}
HUMAN_DNA_DETAILS = { "head" => ["head", "face", "eyes", "forehead", "ears", "nose", "mouth", "neck"],
"torso" => ["body", "waist", "back", "chest" ],
"right arm" => [ "arm" ],
"left arm" => [ "arm" ],
"right leg" => [ "leg" ],
"left leg" => [ "leg" ],
"right hand" => [ "hand", "wrist" ],
"left hand" => [ "hand", "wrist" ],
"right foot" => [ "foot" ],
"left foot" => [ "foot" ]
}
HUMAN_CORE = [ "head", "torso" ]
end