Fixed hill shading for transparent structures a bit. Still not optimal.

This commit is contained in:
Sascha L. Teichmann
2014-10-28 11:53:18 +01:00
parent 6afed94154
commit cf9cbe7087
2 changed files with 32 additions and 4 deletions

View File

@@ -136,6 +136,12 @@ func (s *Span) Len() int {
return n
}
func (s *Span) Top() int32 {
for ; s.Next != nil; s = s.Next {
}
return s.To
}
func (s *Span) String() string {
var buf bytes.Buffer
first := true