gg/mx/ray.go
2024-05-28 13:24:12 +05:00

10 lines
141 B
Go

package mx
// The type represents math ray.
type Ray struct {
// The start point.
Start Vector
// Rotation of the ray.
Rotaton Float
}