blob: ab9c94c185819f795f15810674ccb813351352ac [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Coordinate type
pub type Coord = f32;
/// A two-dimensional point
pub type Point = euclid::Point2D<Coord>;
/// A two-dimensional rectangle
pub type Rect = euclid::Rect<Coord>;
/// A type representing the extent of an element
/// in two-dimensionals.
pub type Size = euclid::Size2D<Coord>;