chromium/ui/gfx/geometry/rounded_corners_f.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_GFX_GEOMETRY_ROUNDED_CORNERS_F_H_
#define UI_GFX_GEOMETRY_ROUNDED_CORNERS_F_H_

#include <iosfwd>
#include <limits>
#include <string>

#include "ui/gfx/geometry/geometry_export.h"
#include "ui/gfx/geometry/vector2d_f.h"

namespace gfx {

// Represents the geometry of a region with rounded corners, expressed as four
// corner radii in the order: top-left, top-right, bottom-right, bottom-left.
class GEOMETRY_EXPORT RoundedCornersF {};

}  // namespace gfx

#endif  // UI_GFX_GEOMETRY_ROUNDED_CORNERS_F_H_