UNPKG
bb8
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.0.2
0.0.1
Force control Sphero BB8 w/ Xbox controller or Myo armband
github.com/dimorphic/bb8
dimorphic/bb8
bb8
/
src
/
lib
/
bb8
/
utils.js
7 lines
(6 loc)
•
154 B
JavaScript
View Raw
1
2
3
4
5
6
7
//
// convert coords to BB8 sphere angle system
//
export
function
getBBAngle
(
x, y
) {
return
(
Math
.
abs
(
Math
.
atan2
(x, y) * (
180
/
Math
.
PI
) -
180
)); }