Nivekk / KOS

Fully programmable autopilot mod for KSP.
Other
80 stars 30 forks source link

Although scalar*vector exists, vector/scalar doesn't. #232

Open Dunbaratu opened 10 years ago

Dunbaratu commented 10 years ago
set sca to 5.0.
set vec to V(10,10,10).
print vec*sca.
V(50,50,50)
print vec/sca.
Can't divide a vector by a scalar.

Why not?

Shouldn't vec/sca by the exact same thing as vec*(1/sca)? (which does work).