blooblib/rectangle.go

8 lines
89 B
Go
Raw Normal View History

2024-03-23 05:15:23 +01:00
package bloob
type Rect[T Number] struct {
Pos, Size Vec2[T]
}
type Recti = Rect[int]