this repo has no description

add points to the coordinate system #3

merged opened by voigt.tngl.sh targeting main from add-coordinates-example
Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:6q572hlx7omtsszji5w2fyw3/sh.tangled.repo.pull/3mbtmcfdews22
+6
Diff #0
+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 {

History

1 round 0 comments
sign up or login to add to the discussion
voigt.tngl.sh submitted #0
1 commit
expand
add points to the coordinate system
expand 0 comments
pull request successfully merged