blob: e7ab907d069430454ee74fd487ff3d5a3d8d3f27 [file] [log] [blame]
// Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
part of '../../vector_math.dart';
/// Constant factor to convert and angle from degrees to radians.
const double degrees2Radians = math.pi / 180.0;
/// Constant factor to convert and angle from radians to degrees.
const double radians2Degrees = 180.0 / math.pi;