blob: 32c5fc2edc3c3c09eb1f66172a36c8f050910556 [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;