// 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/box_f.h" #include <algorithm> #include "base/check_op.h" #include "base/strings/stringprintf.h" namespace gfx { std::string BoxF::ToString() const { … } bool BoxF::IsEmpty() const { … } void BoxF::ExpandTo(const Point3F& min, const Point3F& max) { … } void BoxF::Union(const BoxF& box) { … } void BoxF::ExpandTo(const Point3F& point) { … } void BoxF::ExpandTo(const BoxF& box) { … } BoxF UnionBoxes(const BoxF& a, const BoxF& b) { … } } // namespace gfx