swf2ass-go/types/shapes/VisitedPoint.go

12 lines
185 B
Go
Raw Normal View History

package shapes
import (
"git.gammaspectra.live/WeebDataHoarder/swf2ass-go/types/math"
)
2023-11-24 08:59:01 +00:00
type VisitedPoint[T ~float64 | ~int64] struct {
Pos math.Vector2[T]
IsBezierControl bool
}