this repo has no description

add points to the coordinate system

voigt.tngl.sh bf9e4d46 e7ec68ee

verified
+6
+6
coordinates/main.go
··· 38 38 } else { 39 39 firefly.ClearScreen(firefly.ColorNone) 40 40 } 41 + 42 + // points in 4 quadrants 43 + firefly.DrawPoint(translatePoint(firefly.Point{X: 10, Y: 10}), firefly.ColorCyan) 44 + firefly.DrawPoint(translatePoint(firefly.Point{X: 10, Y: -10}), firefly.ColorGreen) 45 + firefly.DrawPoint(translatePoint(firefly.Point{X: -10, Y: 10}), firefly.ColorBlue) 46 + firefly.DrawPoint(translatePoint(firefly.Point{X: -10, Y: -10}), firefly.ColorRed) 41 47 } 42 48 43 49 func translatePoint(p firefly.Point) firefly.Point {