10 lines
141 B
Go
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
|
|
}
|
|
|