blank line

This commit is contained in:
Josh Deprez 2021-09-15 14:32:06 +10:00
parent af13a856e8
commit f46f7af292

View file

@ -169,7 +169,6 @@ func (p *Prism) DrawAfter(x Drawer) bool {
if pb.Max.Y <= xb.Min.Y { // p is above x if pb.Max.Y <= xb.Min.Y { // p is above x
return true return true
} }
// The prism special // The prism special
split := p.m.topext[geom.North].X split := p.m.topext[geom.North].X
threshold := p.m.topext[geom.East].Y threshold := p.m.topext[geom.East].Y
@ -225,6 +224,7 @@ func (p *Prism) DrawBefore(x Drawer) bool {
if pb.Min.Z+threshold <= xb.Min.Z { // x is in front of the front half of p if pb.Min.Z+threshold <= xb.Min.Z { // x is in front of the front half of p
return true return true
} }
case ZPositioner: case ZPositioner:
return pb.Max.Z < int(x.ZPos()) // p is before x return pb.Max.Z < int(x.ZPos()) // p is before x
} }