I have a series of strings like this "50 50 10"
Each number is supposed to represent the x, y, and z values of an origin. I want to convert each number of this string into an actual float.
I tried using atof, but that gave me back just the first number, 50 in this case.
Any ideas?
Thank you!