blob: 8e1e1b3ce276b29cfa429e1d321ed8b6e10e557f [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cobalt/math/point.h"
#include "base/stringprintf.h"
namespace cobalt {
namespace math {
template class PointBase<Point, int, Vector2d>;
std::string Point::ToString() const {
return base::StringPrintf("%d,%d", x(), y());
}
} // namespace math
} // namespace cobalt