blob: 776705beecb54fd5d5b2b7775f65d2993f1aa2ce [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_64.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;