gg/ray.go

11 lines
130 B
Go
Raw Normal View History

2023-10-23 15:45:18 +03:00
package gg
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.
P Point
2023-05-28 21:07:05 +03:00
// Rotation of the ray.
R Float
}