@brief Per-element scale for fixed-size MJ array fields. The * codegen array-export loop reads through this so a future units * change (e.g. radians -> degrees on a specific subtype) doesn't * need a per-call-site edit. */
| 103 | * change (e.g. radians -> degrees on a specific subtype) doesn't |
| 104 | * need a per-call-site edit. */ |
| 105 | FORCEINLINE double ScaleMToCm(double InM) |
| 106 | { |
| 107 | return InM * 100.0; |
| 108 | } |
| 109 | FORCEINLINE double ScaleCmToM(double InCm) |
| 110 | { |
| 111 | return InCm * 0.01; |
nothing calls this directly
no outgoing calls
no test coverage detected