110 /// @brief Convert three numbers in a string into a Vector3.
111 /// @param ToConvert The string to be converted.
112 /// @remarks The string is expected to have a certain format. The format should be "X Y Z". If there are not 3 numbers an exception will be thrown.
113 /// @return Returns a Vector3 populated with the values from the string passed in.
119 /// @brief Convert four numbers in a string into a Quaternion.
120 /// @param ToConvert The string to be converted.
121 /// @remarks The string is expected to have a certain format. The format should be "X Y Z W". If there are not 4 numbers an exception will be thrown.
122 /// @return Returns a Quaternion populated with the values from the string passed in.
128 /// @brief Convert four numbers in a string into a ColourValue.
129 /// @param ToConvert The string to be converted.
130 /// @remarks The string is expected to have a certain format. The format should be "R G B A". If there are not 4 numbers an exception will be thrown.
131 /// @return Returns a ColourValue populated with the values from the string passed in.