blob: 9229720bb2fa1b33ca7eec8bb893b2b8501f72fc [file] [log] [blame]
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/gfx/geometry/axis_transform2d.h"
#include "base/strings/stringprintf.h"
namespace gfx {
std::string AxisTransform2d::ToString() const {
return base::StringPrintf("[%s, %s]", scale_.ToString().c_str(),
translation_.ToString().c_str());
}
} // namespace gfx