### Description Two issues: - The `y` value is returned as up, when it should be `z` - The current `z` value (which is forward), is being returned as its opposite. (flipped axis) ### Version 0.2.108 ### Example This model should return `x=10, y=9, z=2.5` <img width="1882" alt="Image" src="https://github.com/user-attachments/assets/63b3cd9d-f5e4-438a-ad1b-4d6166cf3771" /> actual response: ``` { "center_of_mass": { "x": 10.0, "y": 2.5, "z": -9.0 }, "output_unit": "in" } ``` `y` is currently up, and the `z` is flipped. Everything should be positive in this example.