Compare commits
2 Commits
7c0f89ebbb
...
998624177a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
998624177a | ||
|
|
001b061016 |
@@ -70,6 +70,10 @@ public readonly partial record struct Area // MilliMetersSquared
|
|||||||
internal static readonly double Coeff1 = Coefficients.MultiplyCoefficient(Area.MeterSquared, ForceLinear.NewtonPerMeter, Torque._Newton_Meter);
|
internal static readonly double Coeff1 = Coefficients.MultiplyCoefficient(Area.MeterSquared, ForceLinear.NewtonPerMeter, Torque._Newton_Meter);
|
||||||
|
|
||||||
[MethodImpl(MethodImplOptions.NoInlining), OperatorsGenerator] public static Length operator /(Area left, Length right) => new(left._Value / right._Value);
|
[MethodImpl(MethodImplOptions.NoInlining), OperatorsGenerator] public static Length operator /(Area left, Length right) => new(left._Value / right._Value);
|
||||||
|
|
||||||
|
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining), OperatorsGenerator] public static ForceVolumetric operator /(ForceLinear left, Area right) => new(left._Value / right._Value);
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining), OperatorsGenerator] public static Density operator /(MassLinear left, Area right) => new(left._Value / right._Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public readonly partial record struct Volume // MillimetersCubic
|
public readonly partial record struct Volume // MillimetersCubic
|
||||||
|
|||||||
Reference in New Issue
Block a user