Working but nothing so far
This commit is contained in:
parent
6ed5b21890
commit
c0c129db88
5 changed files with 136 additions and 35 deletions
6
color.go
6
color.go
|
|
@ -3,3 +3,9 @@ package main
|
|||
type Color interface {
|
||||
GetColor(Vector3) Vector3
|
||||
}
|
||||
|
||||
var RED = Vector3{255, 0, 0}
|
||||
var GREEN = Vector3{0, 255, 0}
|
||||
var BLUE = Vector3{0, 0, 255}
|
||||
var WHITE = Vector3{255, 255, 255}
|
||||
var GREY = Vector3{127, 127, 127}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue