File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,20 +26,20 @@ public partial struct Force
26
26
{
27
27
public static Force FromPressureByArea ( Pressure p , Length2d area )
28
28
{
29
- double metersSquared = area . Meters . X * area . Meters . Y ;
30
- double newtons = p . Pascals * metersSquared ;
29
+ double metersSquared = area . Meters . X * area . Meters . Y ;
30
+ double newtons = p . Pascals * metersSquared ;
31
31
return new Force ( newtons ) ;
32
32
}
33
33
34
34
public static Force FromPressureByArea ( Pressure p , Area area )
35
35
{
36
- double newtons = p . Pascals * area . SquareMeters ;
36
+ double newtons = p . Pascals * area . SquareMeters ;
37
37
return new Force ( newtons ) ;
38
38
}
39
39
40
40
public static Force FromMassByAcceleration ( Mass mass , double metersPerSecondSquared )
41
41
{
42
- return new Force ( mass . Kilograms * metersPerSecondSquared ) ;
42
+ return new Force ( mass . Kilograms * metersPerSecondSquared ) ;
43
43
}
44
44
}
45
45
}
You can’t perform that action at this time.
0 commit comments