Skip to content

Commit

Permalink
Use proper mass conversion function
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonPacewic committed Jul 30, 2024
1 parent 55a9c6e commit 0c6bfa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter/SynthesisFusionAddin/src/UI/GeneralConfigTab.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(self, args: adsk.core.CommandCreatedEventArgs, exporterOptions: Exp
imperialUnits = self.currentUnits == PreferredUnits.IMPERIAL
if imperialUnits:
# ExporterOptions always contains the metric value
displayWeight = exporterOptions.robotWeight * 2.2046226218
displayWeight = toLbs(exporterOptions.robotWeight)
else:
displayWeight = exporterOptions.robotWeight

Expand Down

0 comments on commit 0c6bfa4

Please sign in to comment.