gg/ray.go
2023-10-23 15:47:27 +03:00

10 lines
130 B
Go

package gg
// The type represents math ray.
type Ray struct {
// The start point.
P Point
// Rotation of the ray.
R Float
}