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