Browse Source

added isPowerOfTwo

Alexander Rose 6 years ago
parent
commit
5693559746
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/mol-math/misc.ts

+ 5 - 1
src/mol-math/misc.ts

@@ -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
 }