@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
+ * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
@@ -10,4 +10,8 @@ export function degToRad (deg: number) {
export function radToDeg (rad: number) {
return rad * 57.29578 // rad * 180 / Math.PI
+}
+
+export function isPowerOfTwo (x: number) {
+ return (x !== 0) && (x & (x - 1)) === 0
}