UNPKG

create-orbit-camera

Version:
14 lines (11 loc) 226 B
module.exports = MakeXRotation function MakeXRotation (angleInRadians) { var c = Math.cos(angleInRadians) var s = Math.sin(angleInRadians) return [ 1, 0, 0, 0, 0, c, s, 0, 0, -s, c, 0, 0, 0, 0, 1 ] }