export class Gyroscope extends SensorObject<AngularVelocity> {
    constructor(uid?: string, value?: AngularVelocity, frequency?: number, displayName?: string) {
        super(uid, value ?? new AngularVelocity(), frequency, displayName);
    }
}