This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use bevy::prelude::*; | |
use self::{ | |
labels::{StageCleanup, StageSet, StageSetup}, | |
resources::{StageConfigs, StageSetList, SystemConfigsFactory}, | |
}; | |
mod labels { | |
use bevy::prelude::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling playground v0.0.1 (/playground) | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x32b8713)[0x7f09bb1a0713] | |
/lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f09b7d2a420] | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x1ed62c7)[0x7f09b9dbe2c7] | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x1ed9eca)[0x7f09b9dc1eca] | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x1ed9eca)[0x7f09b9dc1eca] | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x1ed9eca)[0x7f09b9dc1eca] | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x1ed9eca)[0x7f09b9dc1eca] | |
/playground/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/librustc_driver-215fbd20babbe9b8.so(+0x1ed9eca)[0x7f09b9dc1eca |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Iterate integer points on a line where dx >= dy and x0 <= x1. */ | |
function *iter_line_low( | |
[x0, y0]: [number, number], | |
[x1, y1]: [number, number] | |
): Generator<[number, number], void, unknown> { | |
const dx = x1 - x0; | |
const dy = y1 - y0; | |
let y = y0; | |
let e = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Takes a pointer to a wasm `TypedArrayData` and returns an appropriate JavaScript `TypedArray` | |
* @param ptr A pointer to a `TypedArrayData` struct | |
* @param memory The `WebAssembly.Memory` buffer containing the pointer | |
* @param useCapacity If true the returned array will have a length determined by the total allocated capacity instead | |
* of the number of elements. | |
*/ | |
export function pointerToTypedArray(ptr: number, buffer: ArrayBuffer, useCapacity = false) { | |
const [structPtr, structLen, structCap, structKind] = new Uint32Array(buffer, ptr, 4); | |
const arraySize = useCapacity ? structCap : structLen; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Factor table built in 1314 ms | |
6 (1 ms) | |
28 (1 ms) | |
496 (4 ms) | |
8128 (14 ms) | |
33550336 (48787 ms) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A superclass for singleton classes. If constructor arguments are needed a single call to `new ClassName(...args)` is | |
* possible, but only before using `ClassName.getInstance()`. Attempting to create additional instances will throw an | |
* error. | |
*/ | |
export abstract class Singleton { | |
/** | |
* Retrieves the singleton instance. | |
*/ | |
public static getInstance<T extends Singleton>(this: { [key: string]: any; new (): T }): T { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(examineNaN(NaN)); | |
// > { isNaN: true, sign: 0, signaling: false, payload: 0 } | |
const nan = createNaN(false, false, 5000); | |
console.log(isNaN(nan)); | |
// > true | |
console.log(examineNaN(nan)); | |
// > { isNaN: true, sign: 0, signaling: false, payload: 5000 } | |
const nan2 = createNaN(false, false, [1, 2, 3, 4, 5, 6]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type='javascript/worker' id='bufferWorker'> | |
self.onmessage = function(e) { | |
var data = e.data; | |
self.postMessage(data, [ data.buffer ]); | |
} | |
</script> | |
<script type='javascript/worker' id='objectWorker'> |