void JSONValue::AddMatrix3(const Matrix3& value) { AddString(value.ToString()); }
bool XMLElement::SetMatrix3(const ea::string& name, const Matrix3& value) { return SetAttribute(name, value.ToString()); }
void JSONValue::SetMatrix3(const String& name, const Matrix3& value) { SetString(name, value.ToString()); }