- What do you want to achieve?
I have a vector value, which occasionally gets negative values, but the thing I want to use the vector for doesn’t support negatives. I want to convert these negative values to positive while keeping it in the vector format
- What is the issue?
I am not sure what method I need to use this
- What solutions have you tried so far?
I have tried searching for this online and I guess I could use math.abs() on each individual axis. Is there a way to apply this to the vector all at once?