lefouvert

Results 106 comments of lefouvert

> The original Result was designed after the corresponding variant in Rust (https://doc.rust-lang.org/core/result/enum.Result.html), where it makes sense to model the errors depending on the use-case (e.g. IOError vs. ParseError ...)....

T_T What a shame. Obviously. Thank you ^^.

Thank you ! It already could be usefull in some case.

Hû, maybe I'm wrong, but does thoses change make us lost the access to the orbit, type of `ksp::orbit::Orbit`, of the vessel ? Since the `OrbitPatch` is available in `Trajectory`,...

True true true true. I was just caught off guard when I had to change ```rust let referenceOrbit = vessel.orbit while(referenceOrbit.reference_body.parent_body.defined) referenceOrbit = referenceOrbit.reference_body.orbit ``` into ```rust let referenceOrbit =...

Oh ! I'm (really strongly) happy to learn than `OrbitPatch` is able to be shrink into an `Orbit`. The example is only because it's how I notice it, as you...

@PhilouDS Atmo considerations : Had done an atmo calculator I dont use anymore but it could be usefull : ```rust sync fn atm_influence(body: ksp::orbit::Body, altitudeSealevel: float, thrustAtm: float, thrustVac: float)...

@PhilouDS I know for sure you didn't even read what I suggest you :) Even if you are in VAB context, equation stay the same. This is mostly copy/past of...

Don't worry, it happens. If you know how many mistakes I made when I'm tired... (More over, how many even when I'm not tired !!!) I have to admit most...

@untoldwind Thank you ! @PhilouDS > DeltaV calculations are broken in KSP2 (for the moment). True > and your code will help me to go deeper. I'm happy if a...