Ejemplo n.º 1
0
void JSONValue::AddMatrix3x4(const Matrix3x4& value)
{
    AddString(value.ToString());
}
Ejemplo n.º 2
0
bool XMLElement::SetMatrix3x4(const ea::string& name, const Matrix3x4& value)
{
    return SetAttribute(name, value.ToString());
}
Ejemplo n.º 3
0
void JSONValue::SetMatrix3x4(const String& name, const Matrix3x4& value)
{
    SetString(name, value.ToString());
}