agentabstract
agentabstract
Sure. ``` package main import ( "fmt" "github.com/Tarliton/collision2d" ) func main(){ box1:=collision2d.NewBox(collision2d.Vector{X:0,Y:0},16,16) polygon1:=box1.ToPolygon() fmt.Println(polygon1) } ``` The output is: {Pos:{X:0.000000, Y:0.000000} Offset:{X:0.000000, Y:0.000000} Angle: 0.000000 Points: [{X:0.000000, Y:0.000000} {X:16.000000, Y:0.000000}...
You know I keep saying top left when really it's bottom left. I'm used to dealing with screens where 0,0 is the top left corner, and max width and height...
I was having the problem with text attachments. Attached text files were being stored in the textbody field instead of being in the attachments where they belong. I copied @InsidiousClu...