render/event/vector.go

8 lines
123 B
Go
Raw Normal View History

2022-02-20 02:22:55 +00:00
package event
// Vector holds a floating point vector along an X and Y axis.
type Vector struct {
X float64
Y float64
}