gg/mx/ray.go

11 lines
141 B
Go
Raw Normal View History

2024-05-28 11:24:12 +03:00
package mx
2023-05-28 21:07:05 +03:00
// The type represents math ray.
type Ray struct {
2023-05-28 21:07:05 +03:00
// The start point.
2024-05-28 11:24:12 +03:00
Start Vector
2023-05-28 21:07:05 +03:00
// Rotation of the ray.
2024-05-28 11:24:12 +03:00
Rotaton Float
}