// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/device/public/cpp/generic_sensor/orientation_util.h" #include <cmath> #include "base/numerics/angle_conversions.h" namespace device { bool ComputeQuaternionFromEulerAngles(double alpha, double beta, double gamma, SensorReading* out_reading) { … } } // namespace device