fix PictureColor

This commit is contained in:
faiface 2017-02-24 20:16:45 +01:00
parent f7a52854c6
commit 095fec8622
1 changed files with 1 additions and 0 deletions

View File

@ -129,5 +129,6 @@ type TargetPicture interface {
// //
// Positions outside the Picture's Bounds must return opaque white (NRGBA{R: 1, G: 1, B:1, A: 1}). // Positions outside the Picture's Bounds must return opaque white (NRGBA{R: 1, G: 1, B:1, A: 1}).
type PictureColor interface { type PictureColor interface {
Picture
Color(at Vec) NRGBA Color(at Vec) NRGBA
} }