예제 #1
0
파일: JSONValue.cpp 프로젝트: Boshin/Urho3D
void JSONValue::AddMatrix3x4(const Matrix3x4& value)
{
    AddString(value.ToString());
}
예제 #2
0
bool XMLElement::SetMatrix3x4(const ea::string& name, const Matrix3x4& value)
{
    return SetAttribute(name, value.ToString());
}
예제 #3
0
파일: JSONValue.cpp 프로젝트: Boshin/Urho3D
void JSONValue::SetMatrix3x4(const String& name, const Matrix3x4& value)
{
    SetString(name, value.ToString());
}