11 lines
144 B
Text
11 lines
144 B
Text
|
|
type Color
|
||
|
|
r::Uint8
|
||
|
|
g::Uint8
|
||
|
|
b::Uint8
|
||
|
|
end
|
||
|
|
|
||
|
|
type Image
|
||
|
|
pic::Array{Color,2}
|
||
|
|
end
|
||
|
|
Image(w::Int, h::Int) = Image(Array(Color, w, h))
|