12345678910111213141516171819202122232425262728293031 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2015 Alec Jacobson <alecjacobson@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #include "random_quaternion.h"
- template <typename Scalar>
- IGL_INLINE Eigen::Quaternion<Scalar> igl::random_quaternion()
- {
- // http://mathproofs.blogspot.com/2005/05/uniformly-distributed-random-unit.html
- const auto & unit_rand = []()->Scalar
- {
- return ((Scalar)rand() / (Scalar)RAND_MAX);
- };
- const Scalar t0 = 2.*M_PI*unit_rand();
- const Scalar t1 = acos(1.-2.*unit_rand());
- const Scalar t2 = 0.5*(M_PI*unit_rand() + acos(unit_rand()));
- return Eigen::Quaternion<Scalar>(
- 1.*sin(t0)*sin(t1)*sin(t2),
- 1.*cos(t0)*sin(t1)*sin(t2),
- 1.*cos(t1)*sin(t2),
- 1.*cos(t2));
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template specialization
- template Eigen::Quaternion<double, 0> igl::random_quaternion<double>();
- #endif
|