(b float64)
| 78 | } |
| 79 | |
| 80 | func (a Vector) MulScalar(b float64) Vector { |
| 81 | return Vector{a.X * b, a.Y * b, a.Z * b} |
| 82 | } |
| 83 | |
| 84 | func (a Vector) DivScalar(b float64) Vector { |
| 85 | return Vector{a.X / b, a.Y / b, a.Z / b} |
no outgoing calls
no test coverage detected