blob: fb5c52e7aec744c0c08b2e13dbb9de6d53a30d05 [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;
/// 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;