Euler
A utility identical to THREE.Euler so you don't have to BYO.
See three.js docs for more info.
import React from "react";
import { DEG2RAD, RAD2DEG, Euler } from "hyperfy";
export default function App() {
const rotation = new Euler().fromArray([0, DEG2RAD * 90, 0]);
console.log(rotation);
return <app />;
}