29 30 31 32 33 34 35 36
# File 'lib/punkmaker/type/human.rb', line 29 def self.base( gender: 'm' ) base = gender == 'm' ? BASE_M : BASE_F ## note: make a copy of base punk = Image.new( base.width, base.height ) punk.compose!( base ) punk end