str function
Returns a string representation of a vector
@param {ReadonlyVec3} a vector to represent as a string @returns {String} string representation of the vector
Implementation
String str(a) {
return """vec3("${a[0]}", "${a[1]}", "${a[2]}")""";
}