typegpu 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{attributes-Di0A7-Fw.d.cts → attributes--1y4Kirx.d.cts} +2 -2
- package/{attributes-CkPkK-h9.d.ts → attributes-Dri8dk1v.d.ts} +2 -2
- package/{chunk-DEMK5MOR.cjs → chunk-7X4KDNDZ.cjs} +2 -2
- package/chunk-7X4KDNDZ.cjs.map +1 -0
- package/{chunk-R4S4YVH4.cjs → chunk-O7JKWPDH.cjs} +2 -2
- package/chunk-O7JKWPDH.cjs.map +1 -0
- package/{chunk-IHC2SDHN.js → chunk-OERXDFXG.js} +2 -2
- package/{chunk-C5JKINT2.js → chunk-ZHXAQ2YE.js} +2 -2
- package/{chunk-C5JKINT2.js.map → chunk-ZHXAQ2YE.js.map} +1 -1
- package/data/index.cjs +1 -1
- package/data/index.cjs.map +1 -1
- package/data/index.d.cts +3 -3
- package/data/index.d.ts +3 -3
- package/data/index.js +1 -1
- package/index.cjs +7 -7
- package/index.cjs.map +1 -1
- package/index.d.cts +29 -18
- package/index.d.ts +29 -18
- package/index.js +7 -7
- package/index.js.map +1 -1
- package/package.json +1 -2
- package/std/index.cjs +1 -1
- package/std/index.cjs.map +1 -1
- package/std/index.d.cts +1 -1
- package/std/index.d.ts +1 -1
- package/std/index.js +1 -1
- package/{wgslTypes-D8LnuOPy.d.cts → wgslTypes-D0JqCGnw.d.cts} +1 -1
- package/{wgslTypes-D8LnuOPy.d.ts → wgslTypes-D0JqCGnw.d.ts} +1 -1
- package/chunk-DEMK5MOR.cjs.map +0 -1
- package/chunk-R4S4YVH4.cjs.map +0 -1
- /package/{chunk-IHC2SDHN.js.map → chunk-OERXDFXG.js.map} +0 -0
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/errors.ts","../src/gpuMode.ts","../src/data/vectorImpl.ts","../src/data/vector.ts","../src/data/matrix.ts"],"sourcesContent":["import type { TgpuBuffer } from './core/buffer/buffer';\nimport type { TgpuSlot } from './core/slot/slotTypes';\nimport type { TgpuVertexLayout } from './core/vertexLayout/vertexLayout';\nimport type { AnyData, Disarray } from './data/dataTypes';\nimport type { WgslArray } from './data/wgslTypes';\nimport type { TgpuBindGroupLayout } from './tgpuBindGroupLayout';\n\nconst prefix = 'Invariant failed';\n\n/**\n * Inspired by: https://github.com/alexreardon/tiny-invariant/blob/master/src/tiny-invariant.ts\n */\nexport function invariant(\n condition: unknown,\n message?: string | (() => string),\n): asserts condition {\n if (condition) {\n // Condition passed\n return;\n }\n\n // In production we strip the message but still throw\n if (process.env.NODE_ENV === 'production') {\n throw new Error(prefix);\n }\n\n // When not in production we allow the message to pass through\n // *This block will be removed in production builds*\n\n const provided = typeof message === 'function' ? message() : message;\n\n // Options:\n // 1. message provided: `${prefix}: ${provided}`\n // 2. message not provided: prefix\n const value = provided ? `${prefix}: ${provided}` : prefix;\n throw new Error(value);\n}\n\n/**\n * An error that happens during resolution of WGSL code.\n * Contains a trace of all ancestor resolvables in\n * which this error originated.\n *\n * @category Errors\n */\nexport class ResolutionError extends Error {\n constructor(\n public readonly cause: unknown,\n public readonly trace: unknown[],\n ) {\n let entries = trace.map((ancestor) => `- ${ancestor}`);\n\n // Showing only the root and leaf nodes.\n if (entries.length > 20) {\n entries = [...entries.slice(0, 11), '...', ...entries.slice(-10)];\n }\n\n super(`Resolution of the following tree failed: \\n${entries.join('\\n')}`);\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, ResolutionError.prototype);\n }\n\n appendToTrace(ancestor: unknown): ResolutionError {\n const newTrace = [ancestor, ...this.trace];\n\n return new ResolutionError(this.cause, newTrace);\n }\n}\n\n/**\n * @category Errors\n */\nexport class MissingSlotValueError extends Error {\n constructor(public readonly slot: TgpuSlot<unknown>) {\n super(`Missing value for '${slot}'`);\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingSlotValueError.prototype);\n }\n}\n\n/**\n * @category Errors\n */\nexport class NotUniformError extends Error {\n constructor(value: TgpuBuffer<AnyData>) {\n super(\n `Buffer '${value.label ?? '<unnamed>'}' is not bindable as a uniform. Use .$usage('uniform') to allow it.`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, NotUniformError.prototype);\n }\n}\n\nexport class MissingLinksError extends Error {\n constructor(fnLabel: string | undefined, externalNames: string[]) {\n super(\n `The function '${fnLabel ?? '<unnamed>'}' is missing links to the following external values: ${externalNames}.`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingLinksError.prototype);\n }\n}\n\nexport class MissingBindGroupsError extends Error {\n constructor(layouts: Iterable<TgpuBindGroupLayout>) {\n super(\n `Missing bind groups for layouts: '${[...layouts].map((layout) => layout.label ?? '<unnamed>').join(', ')}'. Please provide it using pipeline.with(layout, bindGroup).(...)`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingBindGroupsError.prototype);\n }\n}\n\nexport class MissingVertexBuffersError extends Error {\n constructor(layouts: Iterable<TgpuVertexLayout<WgslArray | Disarray>>) {\n super(\n `Missing vertex buffers for layouts: '${[...layouts].map((layout) => layout.label ?? '<unnamed>').join(', ')}'. Please provide it using pipeline.with(layout, buffer).(...)`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingVertexBuffersError.prototype);\n }\n}\n","import { invariant } from './errors';\nimport type { ResolutionCtx } from './types';\n\nlet resolutionCtx: ResolutionCtx | null = null;\n\nexport function provideCtx<T>(ctx: ResolutionCtx, callback: () => T): T {\n invariant(resolutionCtx === null, 'Cannot nest context providers');\n\n resolutionCtx = ctx;\n try {\n return callback();\n } finally {\n resolutionCtx = null;\n }\n}\n\nexport function getResolutionCtx(): ResolutionCtx | null {\n return resolutionCtx;\n}\n\nexport const inGPUMode = () => resolutionCtx !== null;\n","import type { SelfResolvable } from '../types';\nimport type { VecKind } from './wgslTypes';\n\n// biome-ignore format: swizzles should not expand\nexport abstract class VecBase extends Array implements SelfResolvable {\n abstract get kind(): VecKind;\n\n abstract get _Vec2(): new (\n x: number,\n y: number,\n ) => Vec2;\n abstract get _Vec3(): new (\n x: number,\n y: number,\n z: number,\n ) => Vec3;\n abstract get _Vec4(): new (\n x: number,\n y: number,\n z: number,\n w: number,\n ) => Vec4;\n\n '~resolve'(): string {\n return `${this.kind}(${this.join(', ')})`;\n }\n\n toString() {\n return this['~resolve']();\n }\n\n get xx() { return new this._Vec2(this[0], this[0]); }\n get xy() { return new this._Vec2(this[0], this[1]); }\n get xz() { return new this._Vec2(this[0], this[2]); }\n get xw() { return new this._Vec2(this[0], this[3]); }\n get yx() { return new this._Vec2(this[1], this[0]); }\n get yy() { return new this._Vec2(this[1], this[1]); }\n get yz() { return new this._Vec2(this[1], this[2]); }\n get yw() { return new this._Vec2(this[1], this[3]); }\n get zx() { return new this._Vec2(this[2], this[0]); }\n get zy() { return new this._Vec2(this[2], this[1]); }\n get zz() { return new this._Vec2(this[2], this[2]); }\n get zw() { return new this._Vec2(this[2], this[3]); }\n get wx() { return new this._Vec2(this[3], this[0]); }\n get wy() { return new this._Vec2(this[3], this[1]); }\n get wz() { return new this._Vec2(this[3], this[2]); }\n get ww() { return new this._Vec2(this[3], this[3]); }\n get xxx() { return new this._Vec3(this[0], this[0], this[0]); }\n get xxy() { return new this._Vec3(this[0], this[0], this[1]); }\n get xxz() { return new this._Vec3(this[0], this[0], this[2]); }\n get xxw() { return new this._Vec3(this[0], this[0], this[3]); }\n get xyx() { return new this._Vec3(this[0], this[1], this[0]); }\n get xyy() { return new this._Vec3(this[0], this[1], this[1]); }\n get xyz() { return new this._Vec3(this[0], this[1], this[2]); }\n get xyw() { return new this._Vec3(this[0], this[1], this[3]); }\n get xzx() { return new this._Vec3(this[0], this[2], this[0]); }\n get xzy() { return new this._Vec3(this[0], this[2], this[1]); }\n get xzz() { return new this._Vec3(this[0], this[2], this[2]); }\n get xzw() { return new this._Vec3(this[0], this[2], this[3]); }\n get xwx() { return new this._Vec3(this[0], this[3], this[0]); }\n get xwy() { return new this._Vec3(this[0], this[3], this[1]); }\n get xwz() { return new this._Vec3(this[0], this[3], this[2]); }\n get xww() { return new this._Vec3(this[0], this[3], this[3]); }\n get yxx() { return new this._Vec3(this[1], this[0], this[0]); }\n get yxy() { return new this._Vec3(this[1], this[0], this[1]); }\n get yxz() { return new this._Vec3(this[1], this[0], this[2]); }\n get yxw() { return new this._Vec3(this[1], this[0], this[3]); }\n get yyx() { return new this._Vec3(this[1], this[1], this[0]); }\n get yyy() { return new this._Vec3(this[1], this[1], this[1]); }\n get yyz() { return new this._Vec3(this[1], this[1], this[2]); }\n get yyw() { return new this._Vec3(this[1], this[1], this[3]); }\n get yzx() { return new this._Vec3(this[1], this[2], this[0]); }\n get yzy() { return new this._Vec3(this[1], this[2], this[1]); }\n get yzz() { return new this._Vec3(this[1], this[2], this[2]); }\n get yzw() { return new this._Vec3(this[1], this[2], this[3]); }\n get ywx() { return new this._Vec3(this[1], this[3], this[0]); }\n get ywy() { return new this._Vec3(this[1], this[3], this[1]); }\n get ywz() { return new this._Vec3(this[1], this[3], this[2]); }\n get yww() { return new this._Vec3(this[1], this[3], this[3]); }\n get zxx() { return new this._Vec3(this[2], this[0], this[0]); }\n get zxy() { return new this._Vec3(this[2], this[0], this[1]); }\n get zxz() { return new this._Vec3(this[2], this[0], this[2]); }\n get zxw() { return new this._Vec3(this[2], this[0], this[3]); }\n get zyx() { return new this._Vec3(this[2], this[1], this[0]); }\n get zyy() { return new this._Vec3(this[2], this[1], this[1]); }\n get zyz() { return new this._Vec3(this[2], this[1], this[2]); }\n get zyw() { return new this._Vec3(this[2], this[1], this[3]); }\n get zzx() { return new this._Vec3(this[2], this[2], this[0]); }\n get zzy() { return new this._Vec3(this[2], this[2], this[1]); }\n get zzz() { return new this._Vec3(this[2], this[2], this[2]); }\n get zzw() { return new this._Vec3(this[2], this[2], this[3]); }\n get zwx() { return new this._Vec3(this[2], this[3], this[0]); }\n get zwy() { return new this._Vec3(this[2], this[3], this[1]); }\n get zwz() { return new this._Vec3(this[2], this[3], this[2]); }\n get zww() { return new this._Vec3(this[2], this[3], this[3]); }\n get wxx() { return new this._Vec3(this[3], this[0], this[0]); }\n get wxy() { return new this._Vec3(this[3], this[0], this[1]); }\n get wxz() { return new this._Vec3(this[3], this[0], this[2]); }\n get wxw() { return new this._Vec3(this[3], this[0], this[3]); }\n get wyx() { return new this._Vec3(this[3], this[1], this[0]); }\n get wyy() { return new this._Vec3(this[3], this[1], this[1]); }\n get wyz() { return new this._Vec3(this[3], this[1], this[2]); }\n get wyw() { return new this._Vec3(this[3], this[1], this[3]); }\n get wzx() { return new this._Vec3(this[3], this[2], this[0]); }\n get wzy() { return new this._Vec3(this[3], this[2], this[1]); }\n get wzz() { return new this._Vec3(this[3], this[2], this[2]); }\n get wzw() { return new this._Vec3(this[3], this[2], this[3]); }\n get wwx() { return new this._Vec3(this[3], this[3], this[0]); }\n get wwy() { return new this._Vec3(this[3], this[3], this[1]); }\n get wwz() { return new this._Vec3(this[3], this[3], this[2]); }\n get www() { return new this._Vec3(this[3], this[3], this[3]); }\n get xxxx() { return new this._Vec4(this[0], this[0], this[0], this[0]); }\n get xxxy() { return new this._Vec4(this[0], this[0], this[0], this[1]); }\n get xxxz() { return new this._Vec4(this[0], this[0], this[0], this[2]); }\n get xxxw() { return new this._Vec4(this[0], this[0], this[0], this[3]); }\n get xxyx() { return new this._Vec4(this[0], this[0], this[1], this[0]); }\n get xxyy() { return new this._Vec4(this[0], this[0], this[1], this[1]); }\n get xxyz() { return new this._Vec4(this[0], this[0], this[1], this[2]); }\n get xxyw() { return new this._Vec4(this[0], this[0], this[1], this[3]); }\n get xxzx() { return new this._Vec4(this[0], this[0], this[2], this[0]); }\n get xxzy() { return new this._Vec4(this[0], this[0], this[2], this[1]); }\n get xxzz() { return new this._Vec4(this[0], this[0], this[2], this[2]); }\n get xxzw() { return new this._Vec4(this[0], this[0], this[2], this[3]); }\n get xxwx() { return new this._Vec4(this[0], this[0], this[3], this[0]); }\n get xxwy() { return new this._Vec4(this[0], this[0], this[3], this[1]); }\n get xxwz() { return new this._Vec4(this[0], this[0], this[3], this[2]); }\n get xxww() { return new this._Vec4(this[0], this[0], this[3], this[3]); }\n get xyxx() { return new this._Vec4(this[0], this[1], this[0], this[0]); }\n get xyxy() { return new this._Vec4(this[0], this[1], this[0], this[1]); }\n get xyxz() { return new this._Vec4(this[0], this[1], this[0], this[2]); }\n get xyxw() { return new this._Vec4(this[0], this[1], this[0], this[3]); }\n get xyyx() { return new this._Vec4(this[0], this[1], this[1], this[0]); }\n get xyyy() { return new this._Vec4(this[0], this[1], this[1], this[1]); }\n get xyyz() { return new this._Vec4(this[0], this[1], this[1], this[2]); }\n get xyyw() { return new this._Vec4(this[0], this[1], this[1], this[3]); }\n get xyzx() { return new this._Vec4(this[0], this[1], this[2], this[0]); }\n get xyzy() { return new this._Vec4(this[0], this[1], this[2], this[1]); }\n get xyzz() { return new this._Vec4(this[0], this[1], this[2], this[2]); }\n get xyzw() { return new this._Vec4(this[0], this[1], this[2], this[3]); }\n get xywx() { return new this._Vec4(this[0], this[1], this[3], this[0]); }\n get xywy() { return new this._Vec4(this[0], this[1], this[3], this[1]); }\n get xywz() { return new this._Vec4(this[0], this[1], this[3], this[2]); }\n get xyww() { return new this._Vec4(this[0], this[1], this[3], this[3]); }\n get xzxx() { return new this._Vec4(this[0], this[2], this[0], this[0]); }\n get xzxy() { return new this._Vec4(this[0], this[2], this[0], this[1]); }\n get xzxz() { return new this._Vec4(this[0], this[2], this[0], this[2]); }\n get xzxw() { return new this._Vec4(this[0], this[2], this[0], this[3]); }\n get xzyx() { return new this._Vec4(this[0], this[2], this[1], this[0]); }\n get xzyy() { return new this._Vec4(this[0], this[2], this[1], this[1]); }\n get xzyz() { return new this._Vec4(this[0], this[2], this[1], this[2]); }\n get xzyw() { return new this._Vec4(this[0], this[2], this[1], this[3]); }\n get xzzx() { return new this._Vec4(this[0], this[2], this[2], this[0]); }\n get xzzy() { return new this._Vec4(this[0], this[2], this[2], this[1]); }\n get xzzz() { return new this._Vec4(this[0], this[2], this[2], this[2]); }\n get xzzw() { return new this._Vec4(this[0], this[2], this[2], this[3]); }\n get xzwx() { return new this._Vec4(this[0], this[2], this[3], this[0]); }\n get xzwy() { return new this._Vec4(this[0], this[2], this[3], this[1]); }\n get xzwz() { return new this._Vec4(this[0], this[2], this[3], this[2]); }\n get xzww() { return new this._Vec4(this[0], this[2], this[3], this[3]); }\n get xwxx() { return new this._Vec4(this[0], this[3], this[0], this[0]); }\n get xwxy() { return new this._Vec4(this[0], this[3], this[0], this[1]); }\n get xwxz() { return new this._Vec4(this[0], this[3], this[0], this[2]); }\n get xwxw() { return new this._Vec4(this[0], this[3], this[0], this[3]); }\n get xwyx() { return new this._Vec4(this[0], this[3], this[1], this[0]); }\n get xwyy() { return new this._Vec4(this[0], this[3], this[1], this[1]); }\n get xwyz() { return new this._Vec4(this[0], this[3], this[1], this[2]); }\n get xwyw() { return new this._Vec4(this[0], this[3], this[1], this[3]); }\n get xwzx() { return new this._Vec4(this[0], this[3], this[2], this[0]); }\n get xwzy() { return new this._Vec4(this[0], this[3], this[2], this[1]); }\n get xwzz() { return new this._Vec4(this[0], this[3], this[2], this[2]); }\n get xwzw() { return new this._Vec4(this[0], this[3], this[2], this[3]); }\n get xwwx() { return new this._Vec4(this[0], this[3], this[3], this[0]); }\n get xwwy() { return new this._Vec4(this[0], this[3], this[3], this[1]); }\n get xwwz() { return new this._Vec4(this[0], this[3], this[3], this[2]); }\n get xwww() { return new this._Vec4(this[0], this[3], this[3], this[3]); }\n get yxxx() { return new this._Vec4(this[1], this[0], this[0], this[0]); }\n get yxxy() { return new this._Vec4(this[1], this[0], this[0], this[1]); }\n get yxxz() { return new this._Vec4(this[1], this[0], this[0], this[2]); }\n get yxxw() { return new this._Vec4(this[1], this[0], this[0], this[3]); }\n get yxyx() { return new this._Vec4(this[1], this[0], this[1], this[0]); }\n get yxyy() { return new this._Vec4(this[1], this[0], this[1], this[1]); }\n get yxyz() { return new this._Vec4(this[1], this[0], this[1], this[2]); }\n get yxyw() { return new this._Vec4(this[1], this[0], this[1], this[3]); }\n get yxzx() { return new this._Vec4(this[1], this[0], this[2], this[0]); }\n get yxzy() { return new this._Vec4(this[1], this[0], this[2], this[1]); }\n get yxzz() { return new this._Vec4(this[1], this[0], this[2], this[2]); }\n get yxzw() { return new this._Vec4(this[1], this[0], this[2], this[3]); }\n get yxwx() { return new this._Vec4(this[1], this[0], this[3], this[0]); }\n get yxwy() { return new this._Vec4(this[1], this[0], this[3], this[1]); }\n get yxwz() { return new this._Vec4(this[1], this[0], this[3], this[2]); }\n get yxww() { return new this._Vec4(this[1], this[0], this[3], this[3]); }\n get yyxx() { return new this._Vec4(this[1], this[1], this[0], this[0]); }\n get yyxy() { return new this._Vec4(this[1], this[1], this[0], this[1]); }\n get yyxz() { return new this._Vec4(this[1], this[1], this[0], this[2]); }\n get yyxw() { return new this._Vec4(this[1], this[1], this[0], this[3]); }\n get yyyx() { return new this._Vec4(this[1], this[1], this[1], this[0]); }\n get yyyy() { return new this._Vec4(this[1], this[1], this[1], this[1]); }\n get yyyz() { return new this._Vec4(this[1], this[1], this[1], this[2]); }\n get yyyw() { return new this._Vec4(this[1], this[1], this[1], this[3]); }\n get yyzx() { return new this._Vec4(this[1], this[1], this[2], this[0]); }\n get yyzy() { return new this._Vec4(this[1], this[1], this[2], this[1]); }\n get yyzz() { return new this._Vec4(this[1], this[1], this[2], this[2]); }\n get yyzw() { return new this._Vec4(this[1], this[1], this[2], this[3]); }\n get yywx() { return new this._Vec4(this[1], this[1], this[3], this[0]); }\n get yywy() { return new this._Vec4(this[1], this[1], this[3], this[1]); }\n get yywz() { return new this._Vec4(this[1], this[1], this[3], this[2]); }\n get yyww() { return new this._Vec4(this[1], this[1], this[3], this[3]); }\n get yzxx() { return new this._Vec4(this[1], this[2], this[0], this[0]); }\n get yzxy() { return new this._Vec4(this[1], this[2], this[0], this[1]); }\n get yzxz() { return new this._Vec4(this[1], this[2], this[0], this[2]); }\n get yzxw() { return new this._Vec4(this[1], this[2], this[0], this[3]); }\n get yzyx() { return new this._Vec4(this[1], this[2], this[1], this[0]); }\n get yzyy() { return new this._Vec4(this[1], this[2], this[1], this[1]); }\n get yzyz() { return new this._Vec4(this[1], this[2], this[1], this[2]); }\n get yzyw() { return new this._Vec4(this[1], this[2], this[1], this[3]); }\n get yzzx() { return new this._Vec4(this[1], this[2], this[2], this[0]); }\n get yzzy() { return new this._Vec4(this[1], this[2], this[2], this[1]); }\n get yzzz() { return new this._Vec4(this[1], this[2], this[2], this[2]); }\n get yzzw() { return new this._Vec4(this[1], this[2], this[2], this[3]); }\n get yzwx() { return new this._Vec4(this[1], this[2], this[3], this[0]); }\n get yzwy() { return new this._Vec4(this[1], this[2], this[3], this[1]); }\n get yzwz() { return new this._Vec4(this[1], this[2], this[3], this[2]); }\n get yzww() { return new this._Vec4(this[1], this[2], this[3], this[3]); }\n get ywxx() { return new this._Vec4(this[1], this[3], this[0], this[0]); }\n get ywxy() { return new this._Vec4(this[1], this[3], this[0], this[1]); }\n get ywxz() { return new this._Vec4(this[1], this[3], this[0], this[2]); }\n get ywxw() { return new this._Vec4(this[1], this[3], this[0], this[3]); }\n get ywyx() { return new this._Vec4(this[1], this[3], this[1], this[0]); }\n get ywyy() { return new this._Vec4(this[1], this[3], this[1], this[1]); }\n get ywyz() { return new this._Vec4(this[1], this[3], this[1], this[2]); }\n get ywyw() { return new this._Vec4(this[1], this[3], this[1], this[3]); }\n get ywzx() { return new this._Vec4(this[1], this[3], this[2], this[0]); }\n get ywzy() { return new this._Vec4(this[1], this[3], this[2], this[1]); }\n get ywzz() { return new this._Vec4(this[1], this[3], this[2], this[2]); }\n get ywzw() { return new this._Vec4(this[1], this[3], this[2], this[3]); }\n get ywwx() { return new this._Vec4(this[1], this[3], this[3], this[0]); }\n get ywwy() { return new this._Vec4(this[1], this[3], this[3], this[1]); }\n get ywwz() { return new this._Vec4(this[1], this[3], this[3], this[2]); }\n get ywww() { return new this._Vec4(this[1], this[3], this[3], this[3]); }\n get zxxx() { return new this._Vec4(this[2], this[0], this[0], this[0]); }\n get zxxy() { return new this._Vec4(this[2], this[0], this[0], this[1]); }\n get zxxz() { return new this._Vec4(this[2], this[0], this[0], this[2]); }\n get zxxw() { return new this._Vec4(this[2], this[0], this[0], this[3]); }\n get zxyx() { return new this._Vec4(this[2], this[0], this[1], this[0]); }\n get zxyy() { return new this._Vec4(this[2], this[0], this[1], this[1]); }\n get zxyz() { return new this._Vec4(this[2], this[0], this[1], this[2]); }\n get zxyw() { return new this._Vec4(this[2], this[0], this[1], this[3]); }\n get zxzx() { return new this._Vec4(this[2], this[0], this[2], this[0]); }\n get zxzy() { return new this._Vec4(this[2], this[0], this[2], this[1]); }\n get zxzz() { return new this._Vec4(this[2], this[0], this[2], this[2]); }\n get zxzw() { return new this._Vec4(this[2], this[0], this[2], this[3]); }\n get zxwx() { return new this._Vec4(this[2], this[0], this[3], this[0]); }\n get zxwy() { return new this._Vec4(this[2], this[0], this[3], this[1]); }\n get zxwz() { return new this._Vec4(this[2], this[0], this[3], this[2]); }\n get zxww() { return new this._Vec4(this[2], this[0], this[3], this[3]); }\n get zyxx() { return new this._Vec4(this[2], this[1], this[0], this[0]); }\n get zyxy() { return new this._Vec4(this[2], this[1], this[0], this[1]); }\n get zyxz() { return new this._Vec4(this[2], this[1], this[0], this[2]); }\n get zyxw() { return new this._Vec4(this[2], this[1], this[0], this[3]); }\n get zyyx() { return new this._Vec4(this[2], this[1], this[1], this[0]); }\n get zyyy() { return new this._Vec4(this[2], this[1], this[1], this[1]); }\n get zyyz() { return new this._Vec4(this[2], this[1], this[1], this[2]); }\n get zyyw() { return new this._Vec4(this[2], this[1], this[1], this[3]); }\n get zyzx() { return new this._Vec4(this[2], this[1], this[2], this[0]); }\n get zyzy() { return new this._Vec4(this[2], this[1], this[2], this[1]); }\n get zyzz() { return new this._Vec4(this[2], this[1], this[2], this[2]); }\n get zyzw() { return new this._Vec4(this[2], this[1], this[2], this[3]); }\n get zywx() { return new this._Vec4(this[2], this[1], this[3], this[0]); }\n get zywy() { return new this._Vec4(this[2], this[1], this[3], this[1]); }\n get zywz() { return new this._Vec4(this[2], this[1], this[3], this[2]); }\n get zyww() { return new this._Vec4(this[2], this[1], this[3], this[3]); }\n get zzxx() { return new this._Vec4(this[2], this[2], this[0], this[0]); }\n get zzxy() { return new this._Vec4(this[2], this[2], this[0], this[1]); }\n get zzxz() { return new this._Vec4(this[2], this[2], this[0], this[2]); }\n get zzxw() { return new this._Vec4(this[2], this[2], this[0], this[3]); }\n get zzyx() { return new this._Vec4(this[2], this[2], this[1], this[0]); }\n get zzyy() { return new this._Vec4(this[2], this[2], this[1], this[1]); }\n get zzyz() { return new this._Vec4(this[2], this[2], this[1], this[2]); }\n get zzyw() { return new this._Vec4(this[2], this[2], this[1], this[3]); }\n get zzzx() { return new this._Vec4(this[2], this[2], this[2], this[0]); }\n get zzzy() { return new this._Vec4(this[2], this[2], this[2], this[1]); }\n get zzzz() { return new this._Vec4(this[2], this[2], this[2], this[2]); }\n get zzzw() { return new this._Vec4(this[2], this[2], this[2], this[3]); }\n get zzwx() { return new this._Vec4(this[2], this[2], this[3], this[0]); }\n get zzwy() { return new this._Vec4(this[2], this[2], this[3], this[1]); }\n get zzwz() { return new this._Vec4(this[2], this[2], this[3], this[2]); }\n get zzww() { return new this._Vec4(this[2], this[2], this[3], this[3]); }\n get zwxx() { return new this._Vec4(this[2], this[3], this[0], this[0]); }\n get zwxy() { return new this._Vec4(this[2], this[3], this[0], this[1]); }\n get zwxz() { return new this._Vec4(this[2], this[3], this[0], this[2]); }\n get zwxw() { return new this._Vec4(this[2], this[3], this[0], this[3]); }\n get zwyx() { return new this._Vec4(this[2], this[3], this[1], this[0]); }\n get zwyy() { return new this._Vec4(this[2], this[3], this[1], this[1]); }\n get zwyz() { return new this._Vec4(this[2], this[3], this[1], this[2]); }\n get zwyw() { return new this._Vec4(this[2], this[3], this[1], this[3]); }\n get zwzx() { return new this._Vec4(this[2], this[3], this[2], this[0]); }\n get zwzy() { return new this._Vec4(this[2], this[3], this[2], this[1]); }\n get zwzz() { return new this._Vec4(this[2], this[3], this[2], this[2]); }\n get zwzw() { return new this._Vec4(this[2], this[3], this[2], this[3]); }\n get zwwx() { return new this._Vec4(this[2], this[3], this[3], this[0]); }\n get zwwy() { return new this._Vec4(this[2], this[3], this[3], this[1]); }\n get zwwz() { return new this._Vec4(this[2], this[3], this[3], this[2]); }\n get zwww() { return new this._Vec4(this[2], this[3], this[3], this[3]); }\n get wxxx() { return new this._Vec4(this[3], this[0], this[0], this[0]); }\n get wxxy() { return new this._Vec4(this[3], this[0], this[0], this[1]); }\n get wxxz() { return new this._Vec4(this[3], this[0], this[0], this[2]); }\n get wxxw() { return new this._Vec4(this[3], this[0], this[0], this[3]); }\n get wxyx() { return new this._Vec4(this[3], this[0], this[1], this[0]); }\n get wxyy() { return new this._Vec4(this[3], this[0], this[1], this[1]); }\n get wxyz() { return new this._Vec4(this[3], this[0], this[1], this[2]); }\n get wxyw() { return new this._Vec4(this[3], this[0], this[1], this[3]); }\n get wxzx() { return new this._Vec4(this[3], this[0], this[2], this[0]); }\n get wxzy() { return new this._Vec4(this[3], this[0], this[2], this[1]); }\n get wxzz() { return new this._Vec4(this[3], this[0], this[2], this[2]); }\n get wxzw() { return new this._Vec4(this[3], this[0], this[2], this[3]); }\n get wxwx() { return new this._Vec4(this[3], this[0], this[3], this[0]); }\n get wxwy() { return new this._Vec4(this[3], this[0], this[3], this[1]); }\n get wxwz() { return new this._Vec4(this[3], this[0], this[3], this[2]); }\n get wxww() { return new this._Vec4(this[3], this[0], this[3], this[3]); }\n get wyxx() { return new this._Vec4(this[3], this[1], this[0], this[0]); }\n get wyxy() { return new this._Vec4(this[3], this[1], this[0], this[1]); }\n get wyxz() { return new this._Vec4(this[3], this[1], this[0], this[2]); }\n get wyxw() { return new this._Vec4(this[3], this[1], this[0], this[3]); }\n get wyyx() { return new this._Vec4(this[3], this[1], this[1], this[0]); }\n get wyyy() { return new this._Vec4(this[3], this[1], this[1], this[1]); }\n get wyyz() { return new this._Vec4(this[3], this[1], this[1], this[2]); }\n get wyyw() { return new this._Vec4(this[3], this[1], this[1], this[3]); }\n get wyzx() { return new this._Vec4(this[3], this[1], this[2], this[0]); }\n get wyzy() { return new this._Vec4(this[3], this[1], this[2], this[1]); }\n get wyzz() { return new this._Vec4(this[3], this[1], this[2], this[2]); }\n get wyzw() { return new this._Vec4(this[3], this[1], this[2], this[3]); }\n get wywx() { return new this._Vec4(this[3], this[1], this[3], this[0]); }\n get wywy() { return new this._Vec4(this[3], this[1], this[3], this[1]); }\n get wywz() { return new this._Vec4(this[3], this[1], this[3], this[2]); }\n get wyww() { return new this._Vec4(this[3], this[1], this[3], this[3]); }\n get wzxx() { return new this._Vec4(this[3], this[2], this[0], this[0]); }\n get wzxy() { return new this._Vec4(this[3], this[2], this[0], this[1]); }\n get wzxz() { return new this._Vec4(this[3], this[2], this[0], this[2]); }\n get wzxw() { return new this._Vec4(this[3], this[2], this[0], this[3]); }\n get wzyx() { return new this._Vec4(this[3], this[2], this[1], this[0]); }\n get wzyy() { return new this._Vec4(this[3], this[2], this[1], this[1]); }\n get wzyz() { return new this._Vec4(this[3], this[2], this[1], this[2]); }\n get wzyw() { return new this._Vec4(this[3], this[2], this[1], this[3]); }\n get wzzx() { return new this._Vec4(this[3], this[2], this[2], this[0]); }\n get wzzy() { return new this._Vec4(this[3], this[2], this[2], this[1]); }\n get wzzz() { return new this._Vec4(this[3], this[2], this[2], this[2]); }\n get wzzw() { return new this._Vec4(this[3], this[2], this[2], this[3]); }\n get wzwx() { return new this._Vec4(this[3], this[2], this[3], this[0]); }\n get wzwy() { return new this._Vec4(this[3], this[2], this[3], this[1]); }\n get wzwz() { return new this._Vec4(this[3], this[2], this[3], this[2]); }\n get wzww() { return new this._Vec4(this[3], this[2], this[3], this[3]); }\n get wwxx() { return new this._Vec4(this[3], this[3], this[0], this[0]); }\n get wwxy() { return new this._Vec4(this[3], this[3], this[0], this[1]); }\n get wwxz() { return new this._Vec4(this[3], this[3], this[0], this[2]); }\n get wwxw() { return new this._Vec4(this[3], this[3], this[0], this[3]); }\n get wwyx() { return new this._Vec4(this[3], this[3], this[1], this[0]); }\n get wwyy() { return new this._Vec4(this[3], this[3], this[1], this[1]); }\n get wwyz() { return new this._Vec4(this[3], this[3], this[1], this[2]); }\n get wwyw() { return new this._Vec4(this[3], this[3], this[1], this[3]); }\n get wwzx() { return new this._Vec4(this[3], this[3], this[2], this[0]); }\n get wwzy() { return new this._Vec4(this[3], this[3], this[2], this[1]); }\n get wwzz() { return new this._Vec4(this[3], this[3], this[2], this[2]); }\n get wwzw() { return new this._Vec4(this[3], this[3], this[2], this[3]); }\n get wwwx() { return new this._Vec4(this[3], this[3], this[3], this[0]); }\n get wwwy() { return new this._Vec4(this[3], this[3], this[3], this[1]); }\n get wwwz() { return new this._Vec4(this[3], this[3], this[3], this[2]); }\n get wwww() { return new this._Vec4(this[3], this[3], this[3], this[3]); }\n}\n\ntype Tuple2 = [number, number];\ntype Tuple3 = [number, number, number];\ntype Tuple4 = [number, number, number, number];\n\nabstract class Vec2 extends VecBase implements Tuple2 {\n declare readonly length = 2;\n\n 0: number;\n 1: number;\n\n constructor(x?: number, y?: number) {\n super(2);\n this[0] = x ?? 0;\n this[1] = y ?? x ?? 0;\n }\n\n get x() {\n return this[0];\n }\n\n get y() {\n return this[1];\n }\n\n set x(value: number) {\n this[0] = value;\n }\n\n set y(value: number) {\n this[1] = value;\n }\n}\n\nabstract class Vec3 extends VecBase implements Tuple3 {\n declare readonly length = 3;\n\n 0: number;\n 1: number;\n 2: number;\n\n constructor(x?: number, y?: number, z?: number) {\n super(3);\n this[0] = x ?? 0;\n this[1] = y ?? x ?? 0;\n this[2] = z ?? x ?? 0;\n }\n\n get x() {\n return this[0];\n }\n\n get y() {\n return this[1];\n }\n\n get z() {\n return this[2];\n }\n\n set x(value: number) {\n this[0] = value;\n }\n\n set y(value: number) {\n this[1] = value;\n }\n\n set z(value: number) {\n this[2] = value;\n }\n}\n\nabstract class Vec4 extends VecBase implements Tuple4 {\n declare readonly length = 4;\n\n 0: number;\n 1: number;\n 2: number;\n 3: number;\n\n constructor(x?: number, y?: number, z?: number, w?: number) {\n super(4);\n this[0] = x ?? 0;\n this[1] = y ?? x ?? 0;\n this[2] = z ?? x ?? 0;\n this[3] = w ?? x ?? 0;\n }\n\n get x() {\n return this[0];\n }\n\n get y() {\n return this[1];\n }\n\n get z() {\n return this[2];\n }\n\n get w() {\n return this[3];\n }\n\n set x(value: number) {\n this[0] = value;\n }\n\n set y(value: number) {\n this[1] = value;\n }\n\n set z(value: number) {\n this[2] = value;\n }\n\n set w(value: number) {\n this[3] = value;\n }\n}\n\nexport class Vec2fImpl extends Vec2 {\n get kind() {\n return 'vec2f' as const;\n }\n\n get _Vec2() {\n return Vec2fImpl;\n }\n get _Vec3() {\n return Vec3fImpl;\n }\n get _Vec4() {\n return Vec4fImpl;\n }\n}\n\nexport class Vec2hImpl extends Vec2 {\n get kind() {\n return 'vec2h' as const;\n }\n\n get _Vec2() {\n return Vec2hImpl;\n }\n get _Vec3() {\n return Vec3hImpl;\n }\n get _Vec4() {\n return Vec4hImpl;\n }\n}\n\nexport class Vec2iImpl extends Vec2 {\n get kind() {\n return 'vec2i' as const;\n }\n\n get _Vec2() {\n return Vec2iImpl;\n }\n get _Vec3() {\n return Vec3iImpl;\n }\n get _Vec4() {\n return Vec4iImpl;\n }\n}\n\nexport class Vec2uImpl extends Vec2 {\n get kind() {\n return 'vec2u' as const;\n }\n\n get _Vec2() {\n return Vec2uImpl;\n }\n get _Vec3() {\n return Vec3uImpl;\n }\n get _Vec4() {\n return Vec4uImpl;\n }\n}\n\nexport class Vec3fImpl extends Vec3 {\n get kind() {\n return 'vec3f' as const;\n }\n\n get _Vec2() {\n return Vec2fImpl;\n }\n get _Vec3() {\n return Vec3fImpl;\n }\n get _Vec4() {\n return Vec4fImpl;\n }\n}\n\nexport class Vec3hImpl extends Vec3 {\n get kind() {\n return 'vec3h' as const;\n }\n\n get _Vec2() {\n return Vec2hImpl;\n }\n get _Vec3() {\n return Vec3hImpl;\n }\n get _Vec4() {\n return Vec4hImpl;\n }\n}\n\nexport class Vec3iImpl extends Vec3 {\n get kind() {\n return 'vec3i' as const;\n }\n\n get _Vec2() {\n return Vec2iImpl;\n }\n get _Vec3() {\n return Vec3iImpl;\n }\n get _Vec4() {\n return Vec4iImpl;\n }\n}\n\nexport class Vec3uImpl extends Vec3 {\n get kind() {\n return 'vec3u' as const;\n }\n\n get _Vec2() {\n return Vec2uImpl;\n }\n get _Vec3() {\n return Vec3uImpl;\n }\n get _Vec4() {\n return Vec4uImpl;\n }\n}\n\nexport class Vec4fImpl extends Vec4 {\n get kind() {\n return 'vec4f' as const;\n }\n\n get _Vec2() {\n return Vec2fImpl;\n }\n get _Vec3() {\n return Vec3fImpl;\n }\n get _Vec4() {\n return Vec4fImpl;\n }\n}\n\nexport class Vec4hImpl extends Vec4 {\n get kind() {\n return 'vec4h' as const;\n }\n\n get _Vec2() {\n return Vec2hImpl;\n }\n get _Vec3() {\n return Vec3hImpl;\n }\n get _Vec4() {\n return Vec4hImpl;\n }\n}\n\nexport class Vec4iImpl extends Vec4 {\n get kind() {\n return 'vec4i' as const;\n }\n\n get _Vec2() {\n return Vec2iImpl;\n }\n get _Vec3() {\n return Vec3iImpl;\n }\n get _Vec4() {\n return Vec4iImpl;\n }\n}\n\nexport class Vec4uImpl extends Vec4 {\n get kind() {\n return 'vec4u' as const;\n }\n\n get _Vec2() {\n return Vec2uImpl;\n }\n get _Vec3() {\n return Vec3uImpl;\n }\n get _Vec4() {\n return Vec4uImpl;\n }\n}\n","import { inGPUMode } from '../gpuMode';\nimport {\n Vec2fImpl,\n Vec2hImpl,\n Vec2iImpl,\n Vec2uImpl,\n Vec3fImpl,\n Vec3hImpl,\n Vec3iImpl,\n Vec3uImpl,\n Vec4fImpl,\n Vec4hImpl,\n Vec4iImpl,\n Vec4uImpl,\n type VecBase,\n} from './vectorImpl';\nimport type {\n Vec2f,\n Vec2h,\n Vec2i,\n Vec2u,\n Vec3f,\n Vec3h,\n Vec3i,\n Vec3u,\n Vec4f,\n Vec4h,\n Vec4i,\n Vec4u,\n} from './wgslTypes';\n\n// --------------\n// Implementation\n// --------------\n\ntype VecSchemaBase<TValue> = {\n readonly type: string;\n readonly '~repr': TValue;\n};\n\nfunction makeVecSchema<TValue>(\n VecImpl: new (...args: number[]) => VecBase,\n): VecSchemaBase<TValue> & ((...args: number[]) => TValue) {\n const { kind: type, length: componentCount } = new VecImpl();\n\n const construct = (...args: number[]): TValue => {\n const values = args; // TODO: Allow users to pass in vectors that fill part of the values.\n\n if (inGPUMode()) {\n return `${type}(${values.join(', ')})` as unknown as TValue;\n }\n\n if (values.length <= 1 || values.length === componentCount) {\n return new VecImpl(...values) as TValue;\n }\n\n throw new Error(\n `'${type}' constructor called with invalid number of arguments.`,\n );\n };\n\n return Object.assign(construct, { type, '~repr': undefined as TValue });\n}\n\n// ----------\n// Public API\n// ----------\n\n/**\n *\n * Schema representing vec2f - a vector with 2 elements of type f32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2f(); // (0.0, 0.0)\n * const vector = d.vec2f(1); // (1.0, 1.0)\n * const vector = d.vec2f(0.5, 0.1); // (0.5, 0.1)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2f, d.vec2f(0, 1)); // buffer holding a d.vec2f value, with an initial value of vec2f(0, 1);\n */\nexport const vec2f = makeVecSchema(Vec2fImpl) as Vec2f;\n\n/**\n *\n * Schema representing vec2h - a vector with 2 elements of type f16.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2h(); // (0.0, 0.0)\n * const vector = d.vec2h(1); // (1.0, 1.0)\n * const vector = d.vec2h(0.5, 0.1); // (0.5, 0.1)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2h, d.vec2h(0, 1)); // buffer holding a d.vec2h value, with an initial value of vec2h(0, 1);\n */\nexport const vec2h = makeVecSchema(Vec2hImpl) as Vec2h;\n\n/**\n *\n * Schema representing vec2i - a vector with 2 elements of type i32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2i(); // (0, 0)\n * const vector = d.vec2i(1); // (1, 1)\n * const vector = d.vec2i(-1, 1); // (-1, 1)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2i, d.vec2i(0, 1)); // buffer holding a d.vec2i value, with an initial value of vec2i(0, 1);\n */\nexport const vec2i = makeVecSchema(Vec2iImpl) as Vec2i;\n\n/**\n *\n * Schema representing vec2u - a vector with 2 elements of type u32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2u(); // (0, 0)\n * const vector = d.vec2u(1); // (1, 1)\n * const vector = d.vec2u(1, 2); // (1, 2)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2u, d.vec2u(0, 1)); // buffer holding a d.vec2u value, with an initial value of vec2u(0, 1);\n */\nexport const vec2u = makeVecSchema(Vec2uImpl) as Vec2u;\n\n/**\n *\n * Schema representing vec3f - a vector with 3 elements of type f32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3f(); // (0.0, 0.0, 0.0)\n * const vector = d.vec3f(1); // (1.0, 1.0, 1.0)\n * const vector = d.vec3f(1, 2, 3.5); // (1.0, 2.0, 3.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3f, d.vec3f(0, 1, 2)); // buffer holding a d.vec3f value, with an initial value of vec3f(0, 1, 2);\n */\nexport const vec3f = makeVecSchema(Vec3fImpl) as Vec3f;\n\n/**\n *\n * Schema representing vec3h - a vector with 3 elements of type f16.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3h(); // (0.0, 0.0, 0.0)\n * const vector = d.vec3h(1); // (1.0, 1.0, 1.0)\n * const vector = d.vec3h(1, 2, 3.5); // (1.0, 2.0, 3.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3h, d.vec3h(0, 1, 2)); // buffer holding a d.vec3h value, with an initial value of vec3h(0, 1, 2);\n */\nexport const vec3h = makeVecSchema(Vec3hImpl) as Vec3h;\n\n/**\n *\n * Schema representing vec3i - a vector with 3 elements of type i32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3i(); // (0, 0, 0)\n * const vector = d.vec3i(1); // (1, 1, 1)\n * const vector = d.vec3i(1, 2, -3); // (1, 2, -3)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3i, d.vec3i(0, 1, 2)); // buffer holding a d.vec3i value, with an initial value of vec3i(0, 1, 2);\n */\nexport const vec3i = makeVecSchema(Vec3iImpl) as Vec3i;\n\n/**\n *\n * Schema representing vec3u - a vector with 3 elements of type u32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3u(); // (0, 0, 0)\n * const vector = d.vec3u(1); // (1, 1, 1)\n * const vector = d.vec3u(1, 2, 3); // (1, 2, 3)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3u, d.vec3u(0, 1, 2)); // buffer holding a d.vec3u value, with an initial value of vec3u(0, 1, 2);\n */\nexport const vec3u = makeVecSchema(Vec3uImpl) as Vec3u;\n\n/**\n *\n * Schema representing vec4f - a vector with 4 elements of type f32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4f(); // (0.0, 0.0, 0.0, 0.0)\n * const vector = d.vec4f(1); // (1.0, 1.0, 1.0, 1.0)\n * const vector = d.vec4f(1, 2, 3, 4.5); // (1.0, 2.0, 3.0, 4.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4f, d.vec4f(0, 1, 2, 3)); // buffer holding a d.vec4f value, with an initial value of vec4f(0, 1, 2, 3);\n */\nexport const vec4f = makeVecSchema(Vec4fImpl) as Vec4f;\n\n/**\n *\n * Schema representing vec4h - a vector with 4 elements of type f16.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4h(); // (0.0, 0.0, 0.0, 0.0)\n * const vector = d.vec4h(1); // (1.0, 1.0, 1.0, 1.0)\n * const vector = d.vec4h(1, 2, 3, 4.5); // (1.0, 2.0, 3.0, 4.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4h, d.vec4h(0, 1, 2, 3)); // buffer holding a d.vec4h value, with an initial value of vec4h(0, 1, 2, 3);\n */\nexport const vec4h = makeVecSchema(Vec4hImpl) as Vec4h;\n\n/**\n *\n * Schema representing vec4i - a vector with 4 elements of type i32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4i(); // (0, 0, 0, 0)\n * const vector = d.vec4i(1); // (1, 1, 1, 1)\n * const vector = d.vec4i(1, 2, 3, -4); // (1, 2, 3, -4)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4i, d.vec4i(0, 1, 2, 3)); // buffer holding a d.vec4i value, with an initial value of vec4i(0, 1, 2, 3);\n */\nexport const vec4i = makeVecSchema(Vec4iImpl) as Vec4i;\n\n/**\n *\n * Schema representing vec4u - a vector with 4 elements of type u32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4u(); // (0, 0, 0, 0)\n * const vector = d.vec4u(1); // (1, 1, 1, 1)\n * const vector = d.vec4u(1, 2, 3, 4); // (1, 2, 3, 4)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4u, d.vec4u(0, 1, 2, 3)); // buffer holding a d.vec4u value, with an initial value of vec4u(0, 1, 2, 3);\n */\nexport const vec4u = makeVecSchema(Vec4uImpl) as Vec4u;\n","import { inGPUMode } from '../gpuMode';\nimport type { SelfResolvable } from '../types';\nimport { vec2f, vec3f, vec4f } from './vector';\nimport type {\n Mat2x2f,\n Mat3x3f,\n Mat4x4f,\n VecKind,\n m2x2f,\n m3x3f,\n m4x4f,\n mat2x2,\n mat3x3,\n mat4x4,\n matBase,\n v2f,\n v3f,\n v4f,\n} from './wgslTypes';\n\n// --------------\n// Implementation\n// --------------\n\ntype vBase = {\n kind: VecKind;\n length: number;\n [n: number]: number;\n};\n\ninterface MatSchemaOptions<TType extends string, ValueType> {\n type: TType;\n rows: number;\n columns: number;\n makeFromElements(...elements: number[]): ValueType;\n}\n\ntype MatConstructor<\n ValueType extends matBase<ColumnType>,\n ColumnType extends vBase,\n> = (...args: (number | ColumnType)[]) => ValueType;\n\nfunction createMatSchema<\n TType extends string,\n ValueType extends matBase<ColumnType>,\n ColumnType extends vBase,\n>(\n options: MatSchemaOptions<TType, ValueType>,\n): { type: TType; '~repr': ValueType } & MatConstructor<ValueType, ColumnType> {\n const MatSchema = {\n /** Type-token, not available at runtime */\n '~repr': undefined as unknown as ValueType,\n type: options.type,\n label: options.type,\n };\n\n const construct = (...args: (number | ColumnType)[]): ValueType => {\n if (inGPUMode()) {\n return `${MatSchema.type}(${args.join(', ')})` as unknown as ValueType;\n }\n\n const elements: number[] = [];\n\n for (const arg of args) {\n if (typeof arg === 'number') {\n elements.push(arg);\n } else {\n for (let i = 0; i < arg.length; ++i) {\n elements.push(arg[i] as number);\n }\n }\n }\n\n // Fill the rest with zeros\n for (let i = elements.length; i < options.columns * options.rows; ++i) {\n elements.push(0);\n }\n\n return options.makeFromElements(...elements);\n };\n\n return Object.assign(construct, MatSchema) as unknown as {\n type: TType;\n '~repr': ValueType;\n } & MatConstructor<ValueType, ColumnType>;\n}\n\nabstract class mat2x2Impl<TColumn extends v2f>\n implements mat2x2<TColumn>, SelfResolvable\n{\n public readonly columns: readonly [TColumn, TColumn];\n public readonly length = 4;\n public abstract readonly kind: string;\n [n: number]: number;\n\n constructor(...elements: number[]) {\n this.columns = [\n this.makeColumn(elements[0] as number, elements[1] as number),\n this.makeColumn(elements[2] as number, elements[3] as number),\n ];\n }\n\n abstract makeColumn(e0: number, e1: number): TColumn;\n\n get [0]() {\n return this.columns[0].x;\n }\n\n get [1]() {\n return this.columns[0].y;\n }\n\n get [2]() {\n return this.columns[1].x;\n }\n\n get [3]() {\n return this.columns[1].y;\n }\n\n set [0](value: number) {\n this.columns[0].x = value;\n }\n\n set [1](value: number) {\n this.columns[0].y = value;\n }\n\n set [2](value: number) {\n this.columns[1].x = value;\n }\n\n set [3](value: number) {\n this.columns[1].y = value;\n }\n\n '~resolve'(): string {\n return `${this.kind}(${Array.from({ length: this.length })\n .map((_, i) => this[i])\n .join(', ')})`;\n }\n}\n\nclass mat2x2fImpl extends mat2x2Impl<v2f> implements m2x2f {\n public readonly kind = 'mat2x2f';\n\n makeColumn(e0: number, e1: number): v2f {\n return vec2f(e0, e1);\n }\n}\n\nabstract class mat3x3Impl<TColumn extends v3f>\n implements mat3x3<TColumn>, SelfResolvable\n{\n public readonly columns: readonly [TColumn, TColumn, TColumn];\n public readonly length = 12;\n public abstract readonly kind: string;\n [n: number]: number;\n\n constructor(...elements: number[]) {\n this.columns = [\n this.makeColumn(\n elements[0] as number,\n elements[1] as number,\n elements[2] as number,\n ),\n this.makeColumn(\n elements[3] as number,\n elements[4] as number,\n elements[5] as number,\n ),\n this.makeColumn(\n elements[6] as number,\n elements[7] as number,\n elements[8] as number,\n ),\n ];\n }\n\n abstract makeColumn(x: number, y: number, z: number): TColumn;\n\n get [0]() {\n return this.columns[0].x;\n }\n\n get [1]() {\n return this.columns[0].y;\n }\n\n get [2]() {\n return this.columns[0].z;\n }\n\n get [3]() {\n return 0;\n }\n\n get [4]() {\n return this.columns[1].x;\n }\n\n get [5]() {\n return this.columns[1].y;\n }\n\n get [6]() {\n return this.columns[1].z;\n }\n\n get [7]() {\n return 0;\n }\n\n get [8]() {\n return this.columns[2].x;\n }\n\n get [9]() {\n return this.columns[2].y;\n }\n\n get [10]() {\n return this.columns[2].z;\n }\n\n get [11]() {\n return 0;\n }\n\n set [0](value: number) {\n this.columns[0].x = value;\n }\n\n set [1](value: number) {\n this.columns[0].y = value;\n }\n\n set [2](value: number) {\n this.columns[0].z = value;\n }\n\n set [3](_: number) {}\n\n set [4](value: number) {\n this.columns[1].x = value;\n }\n\n set [5](value: number) {\n this.columns[1].y = value;\n }\n\n set [6](value: number) {\n this.columns[1].z = value;\n }\n\n set [7](_: number) {}\n\n set [8](value: number) {\n this.columns[2].x = value;\n }\n\n set [9](value: number) {\n this.columns[2].y = value;\n }\n\n set [10](value: number) {\n this.columns[2].z = value;\n }\n\n set [11](_: number) {}\n\n '~resolve'(): string {\n return `${this.kind}(${this[0]}, ${this[1]}, ${this[2]}, ${this[4]}, ${this[5]}, ${this[6]}, ${this[8]}, ${this[9]}, ${this[10]})`;\n }\n}\n\nclass mat3x3fImpl extends mat3x3Impl<v3f> implements m3x3f {\n public readonly kind = 'mat3x3f';\n makeColumn(x: number, y: number, z: number): v3f {\n return vec3f(x, y, z);\n }\n}\n\nabstract class mat4x4Impl<TColumn extends v4f>\n implements mat4x4<TColumn>, SelfResolvable\n{\n public readonly columns: readonly [TColumn, TColumn, TColumn, TColumn];\n public abstract readonly kind: string;\n\n constructor(...elements: number[]) {\n this.columns = [\n this.makeColumn(\n elements[0] as number,\n elements[1] as number,\n elements[2] as number,\n elements[3] as number,\n ),\n this.makeColumn(\n elements[4] as number,\n elements[5] as number,\n elements[6] as number,\n elements[7] as number,\n ),\n this.makeColumn(\n elements[8] as number,\n elements[9] as number,\n elements[10] as number,\n elements[11] as number,\n ),\n this.makeColumn(\n elements[12] as number,\n elements[13] as number,\n elements[14] as number,\n elements[15] as number,\n ),\n ];\n }\n\n abstract makeColumn(x: number, y: number, z: number, w: number): TColumn;\n\n public readonly length = 16;\n [n: number]: number;\n\n get [0]() {\n return this.columns[0].x;\n }\n\n get [1]() {\n return this.columns[0].y;\n }\n\n get [2]() {\n return this.columns[0].z;\n }\n\n get [3]() {\n return this.columns[0].w;\n }\n\n get [4]() {\n return this.columns[1].x;\n }\n\n get [5]() {\n return this.columns[1].y;\n }\n\n get [6]() {\n return this.columns[1].z;\n }\n\n get [7]() {\n return this.columns[1].w;\n }\n\n get [8]() {\n return this.columns[2].x;\n }\n\n get [9]() {\n return this.columns[2].y;\n }\n\n get [10]() {\n return this.columns[2].z;\n }\n\n get [11]() {\n return this.columns[2].w;\n }\n\n get [12]() {\n return this.columns[3].x;\n }\n\n get [13]() {\n return this.columns[3].y;\n }\n\n get [14]() {\n return this.columns[3].z;\n }\n\n get [15]() {\n return this.columns[3].w;\n }\n\n set [0](value: number) {\n this.columns[0].x = value;\n }\n\n set [1](value: number) {\n this.columns[0].y = value;\n }\n\n set [2](value: number) {\n this.columns[0].z = value;\n }\n\n set [3](value: number) {\n this.columns[0].w = value;\n }\n\n set [4](value: number) {\n this.columns[1].x = value;\n }\n\n set [5](value: number) {\n this.columns[1].y = value;\n }\n\n set [6](value: number) {\n this.columns[1].z = value;\n }\n\n set [7](value: number) {\n this.columns[1].w = value;\n }\n\n set [8](value: number) {\n this.columns[2].x = value;\n }\n\n set [9](value: number) {\n this.columns[2].y = value;\n }\n\n set [10](value: number) {\n this.columns[2].z = value;\n }\n\n set [11](value: number) {\n this.columns[2].w = value;\n }\n\n set [12](value: number) {\n this.columns[3].x = value;\n }\n\n set [13](value: number) {\n this.columns[3].y = value;\n }\n\n set [14](value: number) {\n this.columns[3].z = value;\n }\n\n set [15](value: number) {\n this.columns[3].w = value;\n }\n\n '~resolve'(): string {\n return `${this.kind}(${Array.from({ length: this.length })\n .map((_, i) => this[i])\n .join(', ')})`;\n }\n}\n\nclass mat4x4fImpl extends mat4x4Impl<v4f> implements m4x4f {\n public readonly kind = 'mat4x4f';\n\n makeColumn(x: number, y: number, z: number, w: number): v4f {\n return vec4f(x, y, z, w);\n }\n}\n\n// ----------\n// Public API\n// ----------\n\n/**\n *\n * Schema representing mat2x2f - a matrix with 2 rows and 2 columns, with elements of type f32.\n * Also a constructor function for this matrix type.\n *\n * @example\n * const zero2x2 = mat2x2f(); // filled with zeros\n *\n * @example\n * const mat = mat2x2f(0, 1, 2, 3);\n * mat.columns[0] // vec2f(0, 1)\n * mat.columns[1] // vec2f(2, 3)\n *\n * @example\n * const mat = mat2x2f(\n * vec2f(0, 1), // column 0\n * vec2f(1, 2), // column 1\n * );\n *\n * @example\n * const buffer = root.createBuffer(d.mat2x2f, d.mat2x2f(0, 1, 2, 3)); // buffer holding a d.mat2x2f value, with an initial value of ((0, 1), (2, 3))\n */\nexport const mat2x2f = createMatSchema<'mat2x2f', m2x2f, v2f>({\n type: 'mat2x2f',\n rows: 2,\n columns: 2,\n makeFromElements: (...elements: number[]) => new mat2x2fImpl(...elements),\n}) as Mat2x2f;\n\n/**\n *\n * Schema representing mat3x3f - a matrix with 3 rows and 3 columns, with elements of type f32.\n * Also a constructor function for this matrix type.\n *\n * @example\n * const zero3x3 = mat3x3f(); // filled with zeros\n *\n * @example\n * const mat = mat3x3f(0, 1, 2, 3, 4, 5, 6, 7, 8);\n * mat.columns[0] // vec3f(0, 1, 2)\n * mat.columns[1] // vec3f(3, 4, 5)\n * mat.columns[2] // vec3f(6, 7, 8)\n *\n * @example\n * const mat = mat3x3f(\n * vec3f(0, 1, 2), // column 0\n * vec3f(2, 3, 4), // column 1\n * vec3f(5, 6, 7), // column 2\n * );\n *\n * @example\n * const buffer = root.createBuffer(d.mat3x3f, d.mat3x3f()); // buffer holding a d.mat3x3f value, with an initial value of mat3x3f filled with zeros\n */\nexport const mat3x3f = createMatSchema<'mat3x3f', m3x3f, v3f>({\n type: 'mat3x3f',\n rows: 3,\n columns: 3,\n makeFromElements: (...elements: number[]) => new mat3x3fImpl(...elements),\n}) as Mat3x3f;\n\n/**\n *\n * Schema representing mat4x4f - a matrix with 4 rows and 4 columns, with elements of type f32.\n * Also a constructor function for this matrix type.\n *\n * @example\n * const zero4x4 = mat4x4f(); // filled with zeros\n *\n * @example\n * const mat = mat3x3f(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15);\n * mat.columns[0] // vec4f(0, 1, 2, 3)\n * mat.columns[1] // vec4f(4, 5, 6, 7)\n * mat.columns[2] // vec4f(8, 9, 10, 11)\n * mat.columns[3] // vec4f(12, 13, 14, 15)\n *\n * @example\n * const mat = mat3x3f(\n * vec4f(0, 1, 2, 3), // column 0\n * vec4f(4, 5, 6, 7), // column 1\n * vec4f(8, 9, 10, 11), // column 2\n * vec4f(12, 13, 14, 15), // column 3\n * );\n *\n * @example\n * const buffer = root.createBuffer(d.mat4x4f, d.mat4x4f()); // buffer holding a d.mat4x4f value, with an initial value of mat4x4f filled with zeros\n */\nexport const mat4x4f = createMatSchema<'mat4x4f', m4x4f, v4f>({\n type: 'mat4x4f',\n rows: 4,\n columns: 4,\n makeFromElements: (...elements: number[]) => new mat4x4fImpl(...elements),\n}) as Mat4x4f;\n\nexport function matToArray(mat: m2x2f | m3x3f | m4x4f): number[] {\n if (mat.kind === 'mat3x3f') {\n return [\n mat[0],\n mat[1],\n mat[2],\n mat[4],\n mat[5],\n mat[6],\n mat[8],\n mat[9],\n mat[10],\n ] as number[];\n }\n\n return Array.from({ length: mat.length }).map((_, idx) => mat[idx] as number);\n}\n"],"mappings":"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","names":["prefix","invariant","condition","message","ResolutionError","_ResolutionError","cause","trace","entries","ancestor","newTrace","MissingSlotValueError","_MissingSlotValueError","slot","NotUniformError","_NotUniformError","value","_a","MissingLinksError","_MissingLinksError","fnLabel","externalNames","MissingBindGroupsError","_MissingBindGroupsError","layouts","layout","MissingVertexBuffersError","_MissingVertexBuffersError","resolutionCtx","provideCtx","ctx","callback","invariant","getResolutionCtx","inGPUMode","VecBase","Vec2","x","y","_a","__publicField","value","Vec3","z","_b","Vec4","w","_c","Vec2fImpl","_Vec2fImpl","Vec3fImpl","Vec4fImpl","Vec2hImpl","_Vec2hImpl","Vec3hImpl","Vec4hImpl","Vec2iImpl","_Vec2iImpl","Vec3iImpl","Vec4iImpl","Vec2uImpl","_Vec2uImpl","Vec3uImpl","Vec4uImpl","_Vec3fImpl","_Vec3hImpl","_Vec3iImpl","_Vec3uImpl","_Vec4fImpl","_Vec4hImpl","_Vec4iImpl","_Vec4uImpl","makeVecSchema","VecImpl","type","componentCount","args","values","inGPUMode","vec2f","Vec2fImpl","vec2h","Vec2hImpl","vec2i","Vec2iImpl","vec2u","Vec2uImpl","vec3f","Vec3fImpl","vec3h","Vec3hImpl","vec3i","Vec3iImpl","vec3u","Vec3uImpl","vec4f","Vec4fImpl","vec4h","Vec4hImpl","vec4i","Vec4iImpl","vec4u","Vec4uImpl","createMatSchema","options","MatSchema","args","inGPUMode","elements","arg","i","mat2x2Impl","__publicField","value","_","mat2x2fImpl","e0","e1","vec2f","mat3x3Impl","mat3x3fImpl","x","y","z","vec3f","mat4x4Impl","mat4x4fImpl","w","vec4f","mat2x2f","mat3x3f","mat4x4f","matToArray","mat","idx"]}
|
1
|
+
{"version":3,"sources":["../src/errors.ts","../src/gpuMode.ts","../src/data/vectorImpl.ts","../src/data/vector.ts","../src/data/matrix.ts"],"sourcesContent":["import type { TgpuBuffer } from './core/buffer/buffer';\nimport type { TgpuSlot } from './core/slot/slotTypes';\nimport type { TgpuVertexLayout } from './core/vertexLayout/vertexLayout';\nimport type { AnyData, Disarray } from './data/dataTypes';\nimport type { WgslArray } from './data/wgslTypes';\nimport type { TgpuBindGroupLayout } from './tgpuBindGroupLayout';\n\nconst prefix = 'Invariant failed';\n\n/**\n * Inspired by: https://github.com/alexreardon/tiny-invariant/blob/master/src/tiny-invariant.ts\n */\nexport function invariant(\n condition: unknown,\n message?: string | (() => string),\n): asserts condition {\n if (condition) {\n // Condition passed\n return;\n }\n\n // In production we strip the message but still throw\n if (process.env.NODE_ENV === 'production') {\n throw new Error(prefix);\n }\n\n // When not in production we allow the message to pass through\n // *This block will be removed in production builds*\n\n const provided = typeof message === 'function' ? message() : message;\n\n // Options:\n // 1. message provided: `${prefix}: ${provided}`\n // 2. message not provided: prefix\n const value = provided ? `${prefix}: ${provided}` : prefix;\n throw new Error(value);\n}\n\n/**\n * An error that happens during resolution of WGSL code.\n * Contains a trace of all ancestor resolvables in\n * which this error originated.\n *\n * @category Errors\n */\nexport class ResolutionError extends Error {\n constructor(\n public readonly cause: unknown,\n public readonly trace: unknown[],\n ) {\n let entries = trace.map((ancestor) => `- ${ancestor}`);\n\n // Showing only the root and leaf nodes.\n if (entries.length > 20) {\n entries = [...entries.slice(0, 11), '...', ...entries.slice(-10)];\n }\n\n super(`Resolution of the following tree failed: \\n${entries.join('\\n')}`);\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, ResolutionError.prototype);\n }\n\n appendToTrace(ancestor: unknown): ResolutionError {\n const newTrace = [ancestor, ...this.trace];\n\n return new ResolutionError(this.cause, newTrace);\n }\n}\n\n/**\n * @category Errors\n */\nexport class MissingSlotValueError extends Error {\n constructor(public readonly slot: TgpuSlot<unknown>) {\n super(`Missing value for '${slot}'`);\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingSlotValueError.prototype);\n }\n}\n\n/**\n * @category Errors\n */\nexport class NotUniformError extends Error {\n constructor(value: TgpuBuffer<AnyData>) {\n super(\n `Buffer '${value.label ?? '<unnamed>'}' is not bindable as a uniform. Use .$usage('uniform') to allow it.`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, NotUniformError.prototype);\n }\n}\n\nexport class MissingLinksError extends Error {\n constructor(fnLabel: string | undefined, externalNames: string[]) {\n super(\n `The function '${fnLabel ?? '<unnamed>'}' is missing links to the following external values: ${externalNames}.`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingLinksError.prototype);\n }\n}\n\nexport class MissingBindGroupsError extends Error {\n constructor(layouts: Iterable<TgpuBindGroupLayout>) {\n super(\n `Missing bind groups for layouts: '${[...layouts].map((layout) => layout.label ?? '<unnamed>').join(', ')}'. Please provide it using pipeline.with(layout, bindGroup).(...)`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingBindGroupsError.prototype);\n }\n}\n\nexport class MissingVertexBuffersError extends Error {\n constructor(layouts: Iterable<TgpuVertexLayout<WgslArray | Disarray>>) {\n super(\n `Missing vertex buffers for layouts: '${[...layouts].map((layout) => layout.label ?? '<unnamed>').join(', ')}'. Please provide it using pipeline.with(layout, buffer).(...)`,\n );\n\n // Set the prototype explicitly.\n Object.setPrototypeOf(this, MissingVertexBuffersError.prototype);\n }\n}\n","import { invariant } from './errors';\nimport type { ResolutionCtx } from './types';\n\nlet resolutionCtx: ResolutionCtx | null = null;\n\nexport function provideCtx<T>(ctx: ResolutionCtx, callback: () => T): T {\n invariant(resolutionCtx === null, 'Cannot nest context providers');\n\n resolutionCtx = ctx;\n try {\n return callback();\n } finally {\n resolutionCtx = null;\n }\n}\n\nexport function getResolutionCtx(): ResolutionCtx | null {\n return resolutionCtx;\n}\n\nexport const inGPUMode = () => resolutionCtx !== null;\n","import type { SelfResolvable } from '../types';\nimport type { VecKind } from './wgslTypes';\n\n// biome-ignore format: swizzles should not expand\nexport abstract class VecBase extends Array implements SelfResolvable {\n abstract get kind(): VecKind;\n\n abstract get _Vec2(): new (\n x: number,\n y: number,\n ) => Vec2;\n abstract get _Vec3(): new (\n x: number,\n y: number,\n z: number,\n ) => Vec3;\n abstract get _Vec4(): new (\n x: number,\n y: number,\n z: number,\n w: number,\n ) => Vec4;\n\n '~resolve'(): string {\n return `${this.kind}(${this.join(', ')})`;\n }\n\n toString() {\n return this['~resolve']();\n }\n\n get xx() { return new this._Vec2(this[0], this[0]); }\n get xy() { return new this._Vec2(this[0], this[1]); }\n get xz() { return new this._Vec2(this[0], this[2]); }\n get xw() { return new this._Vec2(this[0], this[3]); }\n get yx() { return new this._Vec2(this[1], this[0]); }\n get yy() { return new this._Vec2(this[1], this[1]); }\n get yz() { return new this._Vec2(this[1], this[2]); }\n get yw() { return new this._Vec2(this[1], this[3]); }\n get zx() { return new this._Vec2(this[2], this[0]); }\n get zy() { return new this._Vec2(this[2], this[1]); }\n get zz() { return new this._Vec2(this[2], this[2]); }\n get zw() { return new this._Vec2(this[2], this[3]); }\n get wx() { return new this._Vec2(this[3], this[0]); }\n get wy() { return new this._Vec2(this[3], this[1]); }\n get wz() { return new this._Vec2(this[3], this[2]); }\n get ww() { return new this._Vec2(this[3], this[3]); }\n get xxx() { return new this._Vec3(this[0], this[0], this[0]); }\n get xxy() { return new this._Vec3(this[0], this[0], this[1]); }\n get xxz() { return new this._Vec3(this[0], this[0], this[2]); }\n get xxw() { return new this._Vec3(this[0], this[0], this[3]); }\n get xyx() { return new this._Vec3(this[0], this[1], this[0]); }\n get xyy() { return new this._Vec3(this[0], this[1], this[1]); }\n get xyz() { return new this._Vec3(this[0], this[1], this[2]); }\n get xyw() { return new this._Vec3(this[0], this[1], this[3]); }\n get xzx() { return new this._Vec3(this[0], this[2], this[0]); }\n get xzy() { return new this._Vec3(this[0], this[2], this[1]); }\n get xzz() { return new this._Vec3(this[0], this[2], this[2]); }\n get xzw() { return new this._Vec3(this[0], this[2], this[3]); }\n get xwx() { return new this._Vec3(this[0], this[3], this[0]); }\n get xwy() { return new this._Vec3(this[0], this[3], this[1]); }\n get xwz() { return new this._Vec3(this[0], this[3], this[2]); }\n get xww() { return new this._Vec3(this[0], this[3], this[3]); }\n get yxx() { return new this._Vec3(this[1], this[0], this[0]); }\n get yxy() { return new this._Vec3(this[1], this[0], this[1]); }\n get yxz() { return new this._Vec3(this[1], this[0], this[2]); }\n get yxw() { return new this._Vec3(this[1], this[0], this[3]); }\n get yyx() { return new this._Vec3(this[1], this[1], this[0]); }\n get yyy() { return new this._Vec3(this[1], this[1], this[1]); }\n get yyz() { return new this._Vec3(this[1], this[1], this[2]); }\n get yyw() { return new this._Vec3(this[1], this[1], this[3]); }\n get yzx() { return new this._Vec3(this[1], this[2], this[0]); }\n get yzy() { return new this._Vec3(this[1], this[2], this[1]); }\n get yzz() { return new this._Vec3(this[1], this[2], this[2]); }\n get yzw() { return new this._Vec3(this[1], this[2], this[3]); }\n get ywx() { return new this._Vec3(this[1], this[3], this[0]); }\n get ywy() { return new this._Vec3(this[1], this[3], this[1]); }\n get ywz() { return new this._Vec3(this[1], this[3], this[2]); }\n get yww() { return new this._Vec3(this[1], this[3], this[3]); }\n get zxx() { return new this._Vec3(this[2], this[0], this[0]); }\n get zxy() { return new this._Vec3(this[2], this[0], this[1]); }\n get zxz() { return new this._Vec3(this[2], this[0], this[2]); }\n get zxw() { return new this._Vec3(this[2], this[0], this[3]); }\n get zyx() { return new this._Vec3(this[2], this[1], this[0]); }\n get zyy() { return new this._Vec3(this[2], this[1], this[1]); }\n get zyz() { return new this._Vec3(this[2], this[1], this[2]); }\n get zyw() { return new this._Vec3(this[2], this[1], this[3]); }\n get zzx() { return new this._Vec3(this[2], this[2], this[0]); }\n get zzy() { return new this._Vec3(this[2], this[2], this[1]); }\n get zzz() { return new this._Vec3(this[2], this[2], this[2]); }\n get zzw() { return new this._Vec3(this[2], this[2], this[3]); }\n get zwx() { return new this._Vec3(this[2], this[3], this[0]); }\n get zwy() { return new this._Vec3(this[2], this[3], this[1]); }\n get zwz() { return new this._Vec3(this[2], this[3], this[2]); }\n get zww() { return new this._Vec3(this[2], this[3], this[3]); }\n get wxx() { return new this._Vec3(this[3], this[0], this[0]); }\n get wxy() { return new this._Vec3(this[3], this[0], this[1]); }\n get wxz() { return new this._Vec3(this[3], this[0], this[2]); }\n get wxw() { return new this._Vec3(this[3], this[0], this[3]); }\n get wyx() { return new this._Vec3(this[3], this[1], this[0]); }\n get wyy() { return new this._Vec3(this[3], this[1], this[1]); }\n get wyz() { return new this._Vec3(this[3], this[1], this[2]); }\n get wyw() { return new this._Vec3(this[3], this[1], this[3]); }\n get wzx() { return new this._Vec3(this[3], this[2], this[0]); }\n get wzy() { return new this._Vec3(this[3], this[2], this[1]); }\n get wzz() { return new this._Vec3(this[3], this[2], this[2]); }\n get wzw() { return new this._Vec3(this[3], this[2], this[3]); }\n get wwx() { return new this._Vec3(this[3], this[3], this[0]); }\n get wwy() { return new this._Vec3(this[3], this[3], this[1]); }\n get wwz() { return new this._Vec3(this[3], this[3], this[2]); }\n get www() { return new this._Vec3(this[3], this[3], this[3]); }\n get xxxx() { return new this._Vec4(this[0], this[0], this[0], this[0]); }\n get xxxy() { return new this._Vec4(this[0], this[0], this[0], this[1]); }\n get xxxz() { return new this._Vec4(this[0], this[0], this[0], this[2]); }\n get xxxw() { return new this._Vec4(this[0], this[0], this[0], this[3]); }\n get xxyx() { return new this._Vec4(this[0], this[0], this[1], this[0]); }\n get xxyy() { return new this._Vec4(this[0], this[0], this[1], this[1]); }\n get xxyz() { return new this._Vec4(this[0], this[0], this[1], this[2]); }\n get xxyw() { return new this._Vec4(this[0], this[0], this[1], this[3]); }\n get xxzx() { return new this._Vec4(this[0], this[0], this[2], this[0]); }\n get xxzy() { return new this._Vec4(this[0], this[0], this[2], this[1]); }\n get xxzz() { return new this._Vec4(this[0], this[0], this[2], this[2]); }\n get xxzw() { return new this._Vec4(this[0], this[0], this[2], this[3]); }\n get xxwx() { return new this._Vec4(this[0], this[0], this[3], this[0]); }\n get xxwy() { return new this._Vec4(this[0], this[0], this[3], this[1]); }\n get xxwz() { return new this._Vec4(this[0], this[0], this[3], this[2]); }\n get xxww() { return new this._Vec4(this[0], this[0], this[3], this[3]); }\n get xyxx() { return new this._Vec4(this[0], this[1], this[0], this[0]); }\n get xyxy() { return new this._Vec4(this[0], this[1], this[0], this[1]); }\n get xyxz() { return new this._Vec4(this[0], this[1], this[0], this[2]); }\n get xyxw() { return new this._Vec4(this[0], this[1], this[0], this[3]); }\n get xyyx() { return new this._Vec4(this[0], this[1], this[1], this[0]); }\n get xyyy() { return new this._Vec4(this[0], this[1], this[1], this[1]); }\n get xyyz() { return new this._Vec4(this[0], this[1], this[1], this[2]); }\n get xyyw() { return new this._Vec4(this[0], this[1], this[1], this[3]); }\n get xyzx() { return new this._Vec4(this[0], this[1], this[2], this[0]); }\n get xyzy() { return new this._Vec4(this[0], this[1], this[2], this[1]); }\n get xyzz() { return new this._Vec4(this[0], this[1], this[2], this[2]); }\n get xyzw() { return new this._Vec4(this[0], this[1], this[2], this[3]); }\n get xywx() { return new this._Vec4(this[0], this[1], this[3], this[0]); }\n get xywy() { return new this._Vec4(this[0], this[1], this[3], this[1]); }\n get xywz() { return new this._Vec4(this[0], this[1], this[3], this[2]); }\n get xyww() { return new this._Vec4(this[0], this[1], this[3], this[3]); }\n get xzxx() { return new this._Vec4(this[0], this[2], this[0], this[0]); }\n get xzxy() { return new this._Vec4(this[0], this[2], this[0], this[1]); }\n get xzxz() { return new this._Vec4(this[0], this[2], this[0], this[2]); }\n get xzxw() { return new this._Vec4(this[0], this[2], this[0], this[3]); }\n get xzyx() { return new this._Vec4(this[0], this[2], this[1], this[0]); }\n get xzyy() { return new this._Vec4(this[0], this[2], this[1], this[1]); }\n get xzyz() { return new this._Vec4(this[0], this[2], this[1], this[2]); }\n get xzyw() { return new this._Vec4(this[0], this[2], this[1], this[3]); }\n get xzzx() { return new this._Vec4(this[0], this[2], this[2], this[0]); }\n get xzzy() { return new this._Vec4(this[0], this[2], this[2], this[1]); }\n get xzzz() { return new this._Vec4(this[0], this[2], this[2], this[2]); }\n get xzzw() { return new this._Vec4(this[0], this[2], this[2], this[3]); }\n get xzwx() { return new this._Vec4(this[0], this[2], this[3], this[0]); }\n get xzwy() { return new this._Vec4(this[0], this[2], this[3], this[1]); }\n get xzwz() { return new this._Vec4(this[0], this[2], this[3], this[2]); }\n get xzww() { return new this._Vec4(this[0], this[2], this[3], this[3]); }\n get xwxx() { return new this._Vec4(this[0], this[3], this[0], this[0]); }\n get xwxy() { return new this._Vec4(this[0], this[3], this[0], this[1]); }\n get xwxz() { return new this._Vec4(this[0], this[3], this[0], this[2]); }\n get xwxw() { return new this._Vec4(this[0], this[3], this[0], this[3]); }\n get xwyx() { return new this._Vec4(this[0], this[3], this[1], this[0]); }\n get xwyy() { return new this._Vec4(this[0], this[3], this[1], this[1]); }\n get xwyz() { return new this._Vec4(this[0], this[3], this[1], this[2]); }\n get xwyw() { return new this._Vec4(this[0], this[3], this[1], this[3]); }\n get xwzx() { return new this._Vec4(this[0], this[3], this[2], this[0]); }\n get xwzy() { return new this._Vec4(this[0], this[3], this[2], this[1]); }\n get xwzz() { return new this._Vec4(this[0], this[3], this[2], this[2]); }\n get xwzw() { return new this._Vec4(this[0], this[3], this[2], this[3]); }\n get xwwx() { return new this._Vec4(this[0], this[3], this[3], this[0]); }\n get xwwy() { return new this._Vec4(this[0], this[3], this[3], this[1]); }\n get xwwz() { return new this._Vec4(this[0], this[3], this[3], this[2]); }\n get xwww() { return new this._Vec4(this[0], this[3], this[3], this[3]); }\n get yxxx() { return new this._Vec4(this[1], this[0], this[0], this[0]); }\n get yxxy() { return new this._Vec4(this[1], this[0], this[0], this[1]); }\n get yxxz() { return new this._Vec4(this[1], this[0], this[0], this[2]); }\n get yxxw() { return new this._Vec4(this[1], this[0], this[0], this[3]); }\n get yxyx() { return new this._Vec4(this[1], this[0], this[1], this[0]); }\n get yxyy() { return new this._Vec4(this[1], this[0], this[1], this[1]); }\n get yxyz() { return new this._Vec4(this[1], this[0], this[1], this[2]); }\n get yxyw() { return new this._Vec4(this[1], this[0], this[1], this[3]); }\n get yxzx() { return new this._Vec4(this[1], this[0], this[2], this[0]); }\n get yxzy() { return new this._Vec4(this[1], this[0], this[2], this[1]); }\n get yxzz() { return new this._Vec4(this[1], this[0], this[2], this[2]); }\n get yxzw() { return new this._Vec4(this[1], this[0], this[2], this[3]); }\n get yxwx() { return new this._Vec4(this[1], this[0], this[3], this[0]); }\n get yxwy() { return new this._Vec4(this[1], this[0], this[3], this[1]); }\n get yxwz() { return new this._Vec4(this[1], this[0], this[3], this[2]); }\n get yxww() { return new this._Vec4(this[1], this[0], this[3], this[3]); }\n get yyxx() { return new this._Vec4(this[1], this[1], this[0], this[0]); }\n get yyxy() { return new this._Vec4(this[1], this[1], this[0], this[1]); }\n get yyxz() { return new this._Vec4(this[1], this[1], this[0], this[2]); }\n get yyxw() { return new this._Vec4(this[1], this[1], this[0], this[3]); }\n get yyyx() { return new this._Vec4(this[1], this[1], this[1], this[0]); }\n get yyyy() { return new this._Vec4(this[1], this[1], this[1], this[1]); }\n get yyyz() { return new this._Vec4(this[1], this[1], this[1], this[2]); }\n get yyyw() { return new this._Vec4(this[1], this[1], this[1], this[3]); }\n get yyzx() { return new this._Vec4(this[1], this[1], this[2], this[0]); }\n get yyzy() { return new this._Vec4(this[1], this[1], this[2], this[1]); }\n get yyzz() { return new this._Vec4(this[1], this[1], this[2], this[2]); }\n get yyzw() { return new this._Vec4(this[1], this[1], this[2], this[3]); }\n get yywx() { return new this._Vec4(this[1], this[1], this[3], this[0]); }\n get yywy() { return new this._Vec4(this[1], this[1], this[3], this[1]); }\n get yywz() { return new this._Vec4(this[1], this[1], this[3], this[2]); }\n get yyww() { return new this._Vec4(this[1], this[1], this[3], this[3]); }\n get yzxx() { return new this._Vec4(this[1], this[2], this[0], this[0]); }\n get yzxy() { return new this._Vec4(this[1], this[2], this[0], this[1]); }\n get yzxz() { return new this._Vec4(this[1], this[2], this[0], this[2]); }\n get yzxw() { return new this._Vec4(this[1], this[2], this[0], this[3]); }\n get yzyx() { return new this._Vec4(this[1], this[2], this[1], this[0]); }\n get yzyy() { return new this._Vec4(this[1], this[2], this[1], this[1]); }\n get yzyz() { return new this._Vec4(this[1], this[2], this[1], this[2]); }\n get yzyw() { return new this._Vec4(this[1], this[2], this[1], this[3]); }\n get yzzx() { return new this._Vec4(this[1], this[2], this[2], this[0]); }\n get yzzy() { return new this._Vec4(this[1], this[2], this[2], this[1]); }\n get yzzz() { return new this._Vec4(this[1], this[2], this[2], this[2]); }\n get yzzw() { return new this._Vec4(this[1], this[2], this[2], this[3]); }\n get yzwx() { return new this._Vec4(this[1], this[2], this[3], this[0]); }\n get yzwy() { return new this._Vec4(this[1], this[2], this[3], this[1]); }\n get yzwz() { return new this._Vec4(this[1], this[2], this[3], this[2]); }\n get yzww() { return new this._Vec4(this[1], this[2], this[3], this[3]); }\n get ywxx() { return new this._Vec4(this[1], this[3], this[0], this[0]); }\n get ywxy() { return new this._Vec4(this[1], this[3], this[0], this[1]); }\n get ywxz() { return new this._Vec4(this[1], this[3], this[0], this[2]); }\n get ywxw() { return new this._Vec4(this[1], this[3], this[0], this[3]); }\n get ywyx() { return new this._Vec4(this[1], this[3], this[1], this[0]); }\n get ywyy() { return new this._Vec4(this[1], this[3], this[1], this[1]); }\n get ywyz() { return new this._Vec4(this[1], this[3], this[1], this[2]); }\n get ywyw() { return new this._Vec4(this[1], this[3], this[1], this[3]); }\n get ywzx() { return new this._Vec4(this[1], this[3], this[2], this[0]); }\n get ywzy() { return new this._Vec4(this[1], this[3], this[2], this[1]); }\n get ywzz() { return new this._Vec4(this[1], this[3], this[2], this[2]); }\n get ywzw() { return new this._Vec4(this[1], this[3], this[2], this[3]); }\n get ywwx() { return new this._Vec4(this[1], this[3], this[3], this[0]); }\n get ywwy() { return new this._Vec4(this[1], this[3], this[3], this[1]); }\n get ywwz() { return new this._Vec4(this[1], this[3], this[3], this[2]); }\n get ywww() { return new this._Vec4(this[1], this[3], this[3], this[3]); }\n get zxxx() { return new this._Vec4(this[2], this[0], this[0], this[0]); }\n get zxxy() { return new this._Vec4(this[2], this[0], this[0], this[1]); }\n get zxxz() { return new this._Vec4(this[2], this[0], this[0], this[2]); }\n get zxxw() { return new this._Vec4(this[2], this[0], this[0], this[3]); }\n get zxyx() { return new this._Vec4(this[2], this[0], this[1], this[0]); }\n get zxyy() { return new this._Vec4(this[2], this[0], this[1], this[1]); }\n get zxyz() { return new this._Vec4(this[2], this[0], this[1], this[2]); }\n get zxyw() { return new this._Vec4(this[2], this[0], this[1], this[3]); }\n get zxzx() { return new this._Vec4(this[2], this[0], this[2], this[0]); }\n get zxzy() { return new this._Vec4(this[2], this[0], this[2], this[1]); }\n get zxzz() { return new this._Vec4(this[2], this[0], this[2], this[2]); }\n get zxzw() { return new this._Vec4(this[2], this[0], this[2], this[3]); }\n get zxwx() { return new this._Vec4(this[2], this[0], this[3], this[0]); }\n get zxwy() { return new this._Vec4(this[2], this[0], this[3], this[1]); }\n get zxwz() { return new this._Vec4(this[2], this[0], this[3], this[2]); }\n get zxww() { return new this._Vec4(this[2], this[0], this[3], this[3]); }\n get zyxx() { return new this._Vec4(this[2], this[1], this[0], this[0]); }\n get zyxy() { return new this._Vec4(this[2], this[1], this[0], this[1]); }\n get zyxz() { return new this._Vec4(this[2], this[1], this[0], this[2]); }\n get zyxw() { return new this._Vec4(this[2], this[1], this[0], this[3]); }\n get zyyx() { return new this._Vec4(this[2], this[1], this[1], this[0]); }\n get zyyy() { return new this._Vec4(this[2], this[1], this[1], this[1]); }\n get zyyz() { return new this._Vec4(this[2], this[1], this[1], this[2]); }\n get zyyw() { return new this._Vec4(this[2], this[1], this[1], this[3]); }\n get zyzx() { return new this._Vec4(this[2], this[1], this[2], this[0]); }\n get zyzy() { return new this._Vec4(this[2], this[1], this[2], this[1]); }\n get zyzz() { return new this._Vec4(this[2], this[1], this[2], this[2]); }\n get zyzw() { return new this._Vec4(this[2], this[1], this[2], this[3]); }\n get zywx() { return new this._Vec4(this[2], this[1], this[3], this[0]); }\n get zywy() { return new this._Vec4(this[2], this[1], this[3], this[1]); }\n get zywz() { return new this._Vec4(this[2], this[1], this[3], this[2]); }\n get zyww() { return new this._Vec4(this[2], this[1], this[3], this[3]); }\n get zzxx() { return new this._Vec4(this[2], this[2], this[0], this[0]); }\n get zzxy() { return new this._Vec4(this[2], this[2], this[0], this[1]); }\n get zzxz() { return new this._Vec4(this[2], this[2], this[0], this[2]); }\n get zzxw() { return new this._Vec4(this[2], this[2], this[0], this[3]); }\n get zzyx() { return new this._Vec4(this[2], this[2], this[1], this[0]); }\n get zzyy() { return new this._Vec4(this[2], this[2], this[1], this[1]); }\n get zzyz() { return new this._Vec4(this[2], this[2], this[1], this[2]); }\n get zzyw() { return new this._Vec4(this[2], this[2], this[1], this[3]); }\n get zzzx() { return new this._Vec4(this[2], this[2], this[2], this[0]); }\n get zzzy() { return new this._Vec4(this[2], this[2], this[2], this[1]); }\n get zzzz() { return new this._Vec4(this[2], this[2], this[2], this[2]); }\n get zzzw() { return new this._Vec4(this[2], this[2], this[2], this[3]); }\n get zzwx() { return new this._Vec4(this[2], this[2], this[3], this[0]); }\n get zzwy() { return new this._Vec4(this[2], this[2], this[3], this[1]); }\n get zzwz() { return new this._Vec4(this[2], this[2], this[3], this[2]); }\n get zzww() { return new this._Vec4(this[2], this[2], this[3], this[3]); }\n get zwxx() { return new this._Vec4(this[2], this[3], this[0], this[0]); }\n get zwxy() { return new this._Vec4(this[2], this[3], this[0], this[1]); }\n get zwxz() { return new this._Vec4(this[2], this[3], this[0], this[2]); }\n get zwxw() { return new this._Vec4(this[2], this[3], this[0], this[3]); }\n get zwyx() { return new this._Vec4(this[2], this[3], this[1], this[0]); }\n get zwyy() { return new this._Vec4(this[2], this[3], this[1], this[1]); }\n get zwyz() { return new this._Vec4(this[2], this[3], this[1], this[2]); }\n get zwyw() { return new this._Vec4(this[2], this[3], this[1], this[3]); }\n get zwzx() { return new this._Vec4(this[2], this[3], this[2], this[0]); }\n get zwzy() { return new this._Vec4(this[2], this[3], this[2], this[1]); }\n get zwzz() { return new this._Vec4(this[2], this[3], this[2], this[2]); }\n get zwzw() { return new this._Vec4(this[2], this[3], this[2], this[3]); }\n get zwwx() { return new this._Vec4(this[2], this[3], this[3], this[0]); }\n get zwwy() { return new this._Vec4(this[2], this[3], this[3], this[1]); }\n get zwwz() { return new this._Vec4(this[2], this[3], this[3], this[2]); }\n get zwww() { return new this._Vec4(this[2], this[3], this[3], this[3]); }\n get wxxx() { return new this._Vec4(this[3], this[0], this[0], this[0]); }\n get wxxy() { return new this._Vec4(this[3], this[0], this[0], this[1]); }\n get wxxz() { return new this._Vec4(this[3], this[0], this[0], this[2]); }\n get wxxw() { return new this._Vec4(this[3], this[0], this[0], this[3]); }\n get wxyx() { return new this._Vec4(this[3], this[0], this[1], this[0]); }\n get wxyy() { return new this._Vec4(this[3], this[0], this[1], this[1]); }\n get wxyz() { return new this._Vec4(this[3], this[0], this[1], this[2]); }\n get wxyw() { return new this._Vec4(this[3], this[0], this[1], this[3]); }\n get wxzx() { return new this._Vec4(this[3], this[0], this[2], this[0]); }\n get wxzy() { return new this._Vec4(this[3], this[0], this[2], this[1]); }\n get wxzz() { return new this._Vec4(this[3], this[0], this[2], this[2]); }\n get wxzw() { return new this._Vec4(this[3], this[0], this[2], this[3]); }\n get wxwx() { return new this._Vec4(this[3], this[0], this[3], this[0]); }\n get wxwy() { return new this._Vec4(this[3], this[0], this[3], this[1]); }\n get wxwz() { return new this._Vec4(this[3], this[0], this[3], this[2]); }\n get wxww() { return new this._Vec4(this[3], this[0], this[3], this[3]); }\n get wyxx() { return new this._Vec4(this[3], this[1], this[0], this[0]); }\n get wyxy() { return new this._Vec4(this[3], this[1], this[0], this[1]); }\n get wyxz() { return new this._Vec4(this[3], this[1], this[0], this[2]); }\n get wyxw() { return new this._Vec4(this[3], this[1], this[0], this[3]); }\n get wyyx() { return new this._Vec4(this[3], this[1], this[1], this[0]); }\n get wyyy() { return new this._Vec4(this[3], this[1], this[1], this[1]); }\n get wyyz() { return new this._Vec4(this[3], this[1], this[1], this[2]); }\n get wyyw() { return new this._Vec4(this[3], this[1], this[1], this[3]); }\n get wyzx() { return new this._Vec4(this[3], this[1], this[2], this[0]); }\n get wyzy() { return new this._Vec4(this[3], this[1], this[2], this[1]); }\n get wyzz() { return new this._Vec4(this[3], this[1], this[2], this[2]); }\n get wyzw() { return new this._Vec4(this[3], this[1], this[2], this[3]); }\n get wywx() { return new this._Vec4(this[3], this[1], this[3], this[0]); }\n get wywy() { return new this._Vec4(this[3], this[1], this[3], this[1]); }\n get wywz() { return new this._Vec4(this[3], this[1], this[3], this[2]); }\n get wyww() { return new this._Vec4(this[3], this[1], this[3], this[3]); }\n get wzxx() { return new this._Vec4(this[3], this[2], this[0], this[0]); }\n get wzxy() { return new this._Vec4(this[3], this[2], this[0], this[1]); }\n get wzxz() { return new this._Vec4(this[3], this[2], this[0], this[2]); }\n get wzxw() { return new this._Vec4(this[3], this[2], this[0], this[3]); }\n get wzyx() { return new this._Vec4(this[3], this[2], this[1], this[0]); }\n get wzyy() { return new this._Vec4(this[3], this[2], this[1], this[1]); }\n get wzyz() { return new this._Vec4(this[3], this[2], this[1], this[2]); }\n get wzyw() { return new this._Vec4(this[3], this[2], this[1], this[3]); }\n get wzzx() { return new this._Vec4(this[3], this[2], this[2], this[0]); }\n get wzzy() { return new this._Vec4(this[3], this[2], this[2], this[1]); }\n get wzzz() { return new this._Vec4(this[3], this[2], this[2], this[2]); }\n get wzzw() { return new this._Vec4(this[3], this[2], this[2], this[3]); }\n get wzwx() { return new this._Vec4(this[3], this[2], this[3], this[0]); }\n get wzwy() { return new this._Vec4(this[3], this[2], this[3], this[1]); }\n get wzwz() { return new this._Vec4(this[3], this[2], this[3], this[2]); }\n get wzww() { return new this._Vec4(this[3], this[2], this[3], this[3]); }\n get wwxx() { return new this._Vec4(this[3], this[3], this[0], this[0]); }\n get wwxy() { return new this._Vec4(this[3], this[3], this[0], this[1]); }\n get wwxz() { return new this._Vec4(this[3], this[3], this[0], this[2]); }\n get wwxw() { return new this._Vec4(this[3], this[3], this[0], this[3]); }\n get wwyx() { return new this._Vec4(this[3], this[3], this[1], this[0]); }\n get wwyy() { return new this._Vec4(this[3], this[3], this[1], this[1]); }\n get wwyz() { return new this._Vec4(this[3], this[3], this[1], this[2]); }\n get wwyw() { return new this._Vec4(this[3], this[3], this[1], this[3]); }\n get wwzx() { return new this._Vec4(this[3], this[3], this[2], this[0]); }\n get wwzy() { return new this._Vec4(this[3], this[3], this[2], this[1]); }\n get wwzz() { return new this._Vec4(this[3], this[3], this[2], this[2]); }\n get wwzw() { return new this._Vec4(this[3], this[3], this[2], this[3]); }\n get wwwx() { return new this._Vec4(this[3], this[3], this[3], this[0]); }\n get wwwy() { return new this._Vec4(this[3], this[3], this[3], this[1]); }\n get wwwz() { return new this._Vec4(this[3], this[3], this[3], this[2]); }\n get wwww() { return new this._Vec4(this[3], this[3], this[3], this[3]); }\n}\n\ntype Tuple2 = [number, number];\ntype Tuple3 = [number, number, number];\ntype Tuple4 = [number, number, number, number];\n\nabstract class Vec2 extends VecBase implements Tuple2 {\n declare readonly length = 2;\n\n 0: number;\n 1: number;\n\n constructor(x?: number, y?: number) {\n super(2);\n this[0] = x ?? 0;\n this[1] = y ?? x ?? 0;\n }\n\n get x() {\n return this[0];\n }\n\n get y() {\n return this[1];\n }\n\n set x(value: number) {\n this[0] = value;\n }\n\n set y(value: number) {\n this[1] = value;\n }\n}\n\nabstract class Vec3 extends VecBase implements Tuple3 {\n declare readonly length = 3;\n\n 0: number;\n 1: number;\n 2: number;\n\n constructor(x?: number, y?: number, z?: number) {\n super(3);\n this[0] = x ?? 0;\n this[1] = y ?? x ?? 0;\n this[2] = z ?? x ?? 0;\n }\n\n get x() {\n return this[0];\n }\n\n get y() {\n return this[1];\n }\n\n get z() {\n return this[2];\n }\n\n set x(value: number) {\n this[0] = value;\n }\n\n set y(value: number) {\n this[1] = value;\n }\n\n set z(value: number) {\n this[2] = value;\n }\n}\n\nabstract class Vec4 extends VecBase implements Tuple4 {\n declare readonly length = 4;\n\n 0: number;\n 1: number;\n 2: number;\n 3: number;\n\n constructor(x?: number, y?: number, z?: number, w?: number) {\n super(4);\n this[0] = x ?? 0;\n this[1] = y ?? x ?? 0;\n this[2] = z ?? x ?? 0;\n this[3] = w ?? x ?? 0;\n }\n\n get x() {\n return this[0];\n }\n\n get y() {\n return this[1];\n }\n\n get z() {\n return this[2];\n }\n\n get w() {\n return this[3];\n }\n\n set x(value: number) {\n this[0] = value;\n }\n\n set y(value: number) {\n this[1] = value;\n }\n\n set z(value: number) {\n this[2] = value;\n }\n\n set w(value: number) {\n this[3] = value;\n }\n}\n\nexport class Vec2fImpl extends Vec2 {\n get kind() {\n return 'vec2f' as const;\n }\n\n get _Vec2() {\n return Vec2fImpl;\n }\n get _Vec3() {\n return Vec3fImpl;\n }\n get _Vec4() {\n return Vec4fImpl;\n }\n}\n\nexport class Vec2hImpl extends Vec2 {\n get kind() {\n return 'vec2h' as const;\n }\n\n get _Vec2() {\n return Vec2hImpl;\n }\n get _Vec3() {\n return Vec3hImpl;\n }\n get _Vec4() {\n return Vec4hImpl;\n }\n}\n\nexport class Vec2iImpl extends Vec2 {\n get kind() {\n return 'vec2i' as const;\n }\n\n get _Vec2() {\n return Vec2iImpl;\n }\n get _Vec3() {\n return Vec3iImpl;\n }\n get _Vec4() {\n return Vec4iImpl;\n }\n}\n\nexport class Vec2uImpl extends Vec2 {\n get kind() {\n return 'vec2u' as const;\n }\n\n get _Vec2() {\n return Vec2uImpl;\n }\n get _Vec3() {\n return Vec3uImpl;\n }\n get _Vec4() {\n return Vec4uImpl;\n }\n}\n\nexport class Vec3fImpl extends Vec3 {\n get kind() {\n return 'vec3f' as const;\n }\n\n get _Vec2() {\n return Vec2fImpl;\n }\n get _Vec3() {\n return Vec3fImpl;\n }\n get _Vec4() {\n return Vec4fImpl;\n }\n}\n\nexport class Vec3hImpl extends Vec3 {\n get kind() {\n return 'vec3h' as const;\n }\n\n get _Vec2() {\n return Vec2hImpl;\n }\n get _Vec3() {\n return Vec3hImpl;\n }\n get _Vec4() {\n return Vec4hImpl;\n }\n}\n\nexport class Vec3iImpl extends Vec3 {\n get kind() {\n return 'vec3i' as const;\n }\n\n get _Vec2() {\n return Vec2iImpl;\n }\n get _Vec3() {\n return Vec3iImpl;\n }\n get _Vec4() {\n return Vec4iImpl;\n }\n}\n\nexport class Vec3uImpl extends Vec3 {\n get kind() {\n return 'vec3u' as const;\n }\n\n get _Vec2() {\n return Vec2uImpl;\n }\n get _Vec3() {\n return Vec3uImpl;\n }\n get _Vec4() {\n return Vec4uImpl;\n }\n}\n\nexport class Vec4fImpl extends Vec4 {\n get kind() {\n return 'vec4f' as const;\n }\n\n get _Vec2() {\n return Vec2fImpl;\n }\n get _Vec3() {\n return Vec3fImpl;\n }\n get _Vec4() {\n return Vec4fImpl;\n }\n}\n\nexport class Vec4hImpl extends Vec4 {\n get kind() {\n return 'vec4h' as const;\n }\n\n get _Vec2() {\n return Vec2hImpl;\n }\n get _Vec3() {\n return Vec3hImpl;\n }\n get _Vec4() {\n return Vec4hImpl;\n }\n}\n\nexport class Vec4iImpl extends Vec4 {\n get kind() {\n return 'vec4i' as const;\n }\n\n get _Vec2() {\n return Vec2iImpl;\n }\n get _Vec3() {\n return Vec3iImpl;\n }\n get _Vec4() {\n return Vec4iImpl;\n }\n}\n\nexport class Vec4uImpl extends Vec4 {\n get kind() {\n return 'vec4u' as const;\n }\n\n get _Vec2() {\n return Vec2uImpl;\n }\n get _Vec3() {\n return Vec3uImpl;\n }\n get _Vec4() {\n return Vec4uImpl;\n }\n}\n","import { inGPUMode } from '../gpuMode';\nimport {\n Vec2fImpl,\n Vec2hImpl,\n Vec2iImpl,\n Vec2uImpl,\n Vec3fImpl,\n Vec3hImpl,\n Vec3iImpl,\n Vec3uImpl,\n Vec4fImpl,\n Vec4hImpl,\n Vec4iImpl,\n Vec4uImpl,\n type VecBase,\n} from './vectorImpl';\nimport type {\n Vec2f,\n Vec2h,\n Vec2i,\n Vec2u,\n Vec3f,\n Vec3h,\n Vec3i,\n Vec3u,\n Vec4f,\n Vec4h,\n Vec4i,\n Vec4u,\n} from './wgslTypes';\n\n// --------------\n// Implementation\n// --------------\n\ntype VecSchemaBase<TValue> = {\n readonly type: string;\n readonly '~repr': TValue;\n};\n\nfunction makeVecSchema<TValue>(\n VecImpl: new (...args: number[]) => VecBase,\n): VecSchemaBase<TValue> & ((...args: number[]) => TValue) {\n const { kind: type, length: componentCount } = new VecImpl();\n\n const construct = (...args: number[]): TValue => {\n const values = args; // TODO: Allow users to pass in vectors that fill part of the values.\n\n if (inGPUMode()) {\n return `${type}(${values.join(', ')})` as unknown as TValue;\n }\n\n if (values.length <= 1 || values.length === componentCount) {\n return new VecImpl(...values) as TValue;\n }\n\n throw new Error(\n `'${type}' constructor called with invalid number of arguments.`,\n );\n };\n\n return Object.assign(construct, { type, '~repr': undefined as TValue });\n}\n\n// ----------\n// Public API\n// ----------\n\n/**\n *\n * Schema representing vec2f - a vector with 2 elements of type f32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2f(); // (0.0, 0.0)\n * const vector = d.vec2f(1); // (1.0, 1.0)\n * const vector = d.vec2f(0.5, 0.1); // (0.5, 0.1)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2f, d.vec2f(0, 1)); // buffer holding a d.vec2f value, with an initial value of vec2f(0, 1);\n */\nexport const vec2f = makeVecSchema(Vec2fImpl) as Vec2f;\n\n/**\n *\n * Schema representing vec2h - a vector with 2 elements of type f16.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2h(); // (0.0, 0.0)\n * const vector = d.vec2h(1); // (1.0, 1.0)\n * const vector = d.vec2h(0.5, 0.1); // (0.5, 0.1)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2h, d.vec2h(0, 1)); // buffer holding a d.vec2h value, with an initial value of vec2h(0, 1);\n */\nexport const vec2h = makeVecSchema(Vec2hImpl) as Vec2h;\n\n/**\n *\n * Schema representing vec2i - a vector with 2 elements of type i32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2i(); // (0, 0)\n * const vector = d.vec2i(1); // (1, 1)\n * const vector = d.vec2i(-1, 1); // (-1, 1)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2i, d.vec2i(0, 1)); // buffer holding a d.vec2i value, with an initial value of vec2i(0, 1);\n */\nexport const vec2i = makeVecSchema(Vec2iImpl) as Vec2i;\n\n/**\n *\n * Schema representing vec2u - a vector with 2 elements of type u32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec2u(); // (0, 0)\n * const vector = d.vec2u(1); // (1, 1)\n * const vector = d.vec2u(1, 2); // (1, 2)\n *\n * @example\n * const buffer = root.createBuffer(d.vec2u, d.vec2u(0, 1)); // buffer holding a d.vec2u value, with an initial value of vec2u(0, 1);\n */\nexport const vec2u = makeVecSchema(Vec2uImpl) as Vec2u;\n\n/**\n *\n * Schema representing vec3f - a vector with 3 elements of type f32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3f(); // (0.0, 0.0, 0.0)\n * const vector = d.vec3f(1); // (1.0, 1.0, 1.0)\n * const vector = d.vec3f(1, 2, 3.5); // (1.0, 2.0, 3.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3f, d.vec3f(0, 1, 2)); // buffer holding a d.vec3f value, with an initial value of vec3f(0, 1, 2);\n */\nexport const vec3f = makeVecSchema(Vec3fImpl) as Vec3f;\n\n/**\n *\n * Schema representing vec3h - a vector with 3 elements of type f16.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3h(); // (0.0, 0.0, 0.0)\n * const vector = d.vec3h(1); // (1.0, 1.0, 1.0)\n * const vector = d.vec3h(1, 2, 3.5); // (1.0, 2.0, 3.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3h, d.vec3h(0, 1, 2)); // buffer holding a d.vec3h value, with an initial value of vec3h(0, 1, 2);\n */\nexport const vec3h = makeVecSchema(Vec3hImpl) as Vec3h;\n\n/**\n *\n * Schema representing vec3i - a vector with 3 elements of type i32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3i(); // (0, 0, 0)\n * const vector = d.vec3i(1); // (1, 1, 1)\n * const vector = d.vec3i(1, 2, -3); // (1, 2, -3)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3i, d.vec3i(0, 1, 2)); // buffer holding a d.vec3i value, with an initial value of vec3i(0, 1, 2);\n */\nexport const vec3i = makeVecSchema(Vec3iImpl) as Vec3i;\n\n/**\n *\n * Schema representing vec3u - a vector with 3 elements of type u32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec3u(); // (0, 0, 0)\n * const vector = d.vec3u(1); // (1, 1, 1)\n * const vector = d.vec3u(1, 2, 3); // (1, 2, 3)\n *\n * @example\n * const buffer = root.createBuffer(d.vec3u, d.vec3u(0, 1, 2)); // buffer holding a d.vec3u value, with an initial value of vec3u(0, 1, 2);\n */\nexport const vec3u = makeVecSchema(Vec3uImpl) as Vec3u;\n\n/**\n *\n * Schema representing vec4f - a vector with 4 elements of type f32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4f(); // (0.0, 0.0, 0.0, 0.0)\n * const vector = d.vec4f(1); // (1.0, 1.0, 1.0, 1.0)\n * const vector = d.vec4f(1, 2, 3, 4.5); // (1.0, 2.0, 3.0, 4.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4f, d.vec4f(0, 1, 2, 3)); // buffer holding a d.vec4f value, with an initial value of vec4f(0, 1, 2, 3);\n */\nexport const vec4f = makeVecSchema(Vec4fImpl) as Vec4f;\n\n/**\n *\n * Schema representing vec4h - a vector with 4 elements of type f16.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4h(); // (0.0, 0.0, 0.0, 0.0)\n * const vector = d.vec4h(1); // (1.0, 1.0, 1.0, 1.0)\n * const vector = d.vec4h(1, 2, 3, 4.5); // (1.0, 2.0, 3.0, 4.5)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4h, d.vec4h(0, 1, 2, 3)); // buffer holding a d.vec4h value, with an initial value of vec4h(0, 1, 2, 3);\n */\nexport const vec4h = makeVecSchema(Vec4hImpl) as Vec4h;\n\n/**\n *\n * Schema representing vec4i - a vector with 4 elements of type i32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4i(); // (0, 0, 0, 0)\n * const vector = d.vec4i(1); // (1, 1, 1, 1)\n * const vector = d.vec4i(1, 2, 3, -4); // (1, 2, 3, -4)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4i, d.vec4i(0, 1, 2, 3)); // buffer holding a d.vec4i value, with an initial value of vec4i(0, 1, 2, 3);\n */\nexport const vec4i = makeVecSchema(Vec4iImpl) as Vec4i;\n\n/**\n *\n * Schema representing vec4u - a vector with 4 elements of type u32.\n * Also a constructor function for this vector value.\n *\n * @example\n * const vector = d.vec4u(); // (0, 0, 0, 0)\n * const vector = d.vec4u(1); // (1, 1, 1, 1)\n * const vector = d.vec4u(1, 2, 3, 4); // (1, 2, 3, 4)\n *\n * @example\n * const buffer = root.createBuffer(d.vec4u, d.vec4u(0, 1, 2, 3)); // buffer holding a d.vec4u value, with an initial value of vec4u(0, 1, 2, 3);\n */\nexport const vec4u = makeVecSchema(Vec4uImpl) as Vec4u;\n","import { inGPUMode } from '../gpuMode';\nimport type { SelfResolvable } from '../types';\nimport { vec2f, vec3f, vec4f } from './vector';\nimport type {\n Mat2x2f,\n Mat3x3f,\n Mat4x4f,\n VecKind,\n m2x2f,\n m3x3f,\n m4x4f,\n mat2x2,\n mat3x3,\n mat4x4,\n matBase,\n v2f,\n v3f,\n v4f,\n} from './wgslTypes';\n\n// --------------\n// Implementation\n// --------------\n\ntype vBase = {\n kind: VecKind;\n length: number;\n [n: number]: number;\n};\n\ninterface MatSchemaOptions<TType extends string, ValueType> {\n type: TType;\n rows: number;\n columns: number;\n makeFromElements(...elements: number[]): ValueType;\n}\n\ntype MatConstructor<\n ValueType extends matBase<ColumnType>,\n ColumnType extends vBase,\n> = (...args: (number | ColumnType)[]) => ValueType;\n\nfunction createMatSchema<\n TType extends string,\n ValueType extends matBase<ColumnType>,\n ColumnType extends vBase,\n>(\n options: MatSchemaOptions<TType, ValueType>,\n): { type: TType; '~repr': ValueType } & MatConstructor<ValueType, ColumnType> {\n const MatSchema = {\n /** Type-token, not available at runtime */\n '~repr': undefined as unknown as ValueType,\n type: options.type,\n label: options.type,\n };\n\n const construct = (...args: (number | ColumnType)[]): ValueType => {\n if (inGPUMode()) {\n return `${MatSchema.type}(${args.join(', ')})` as unknown as ValueType;\n }\n\n const elements: number[] = [];\n\n for (const arg of args) {\n if (typeof arg === 'number') {\n elements.push(arg);\n } else {\n for (let i = 0; i < arg.length; ++i) {\n elements.push(arg[i] as number);\n }\n }\n }\n\n // Fill the rest with zeros\n for (let i = elements.length; i < options.columns * options.rows; ++i) {\n elements.push(0);\n }\n\n return options.makeFromElements(...elements);\n };\n\n return Object.assign(construct, MatSchema) as unknown as {\n type: TType;\n '~repr': ValueType;\n } & MatConstructor<ValueType, ColumnType>;\n}\n\nabstract class mat2x2Impl<TColumn extends v2f>\n implements mat2x2<TColumn>, SelfResolvable\n{\n public readonly columns: readonly [TColumn, TColumn];\n public readonly length = 4;\n public abstract readonly kind: string;\n [n: number]: number;\n\n constructor(...elements: number[]) {\n this.columns = [\n this.makeColumn(elements[0] as number, elements[1] as number),\n this.makeColumn(elements[2] as number, elements[3] as number),\n ];\n }\n\n abstract makeColumn(e0: number, e1: number): TColumn;\n\n get [0]() {\n return this.columns[0].x;\n }\n\n get [1]() {\n return this.columns[0].y;\n }\n\n get [2]() {\n return this.columns[1].x;\n }\n\n get [3]() {\n return this.columns[1].y;\n }\n\n set [0](value: number) {\n this.columns[0].x = value;\n }\n\n set [1](value: number) {\n this.columns[0].y = value;\n }\n\n set [2](value: number) {\n this.columns[1].x = value;\n }\n\n set [3](value: number) {\n this.columns[1].y = value;\n }\n\n '~resolve'(): string {\n return `${this.kind}(${Array.from({ length: this.length })\n .map((_, i) => this[i])\n .join(', ')})`;\n }\n}\n\nclass mat2x2fImpl extends mat2x2Impl<v2f> implements m2x2f {\n public readonly kind = 'mat2x2f';\n\n makeColumn(e0: number, e1: number): v2f {\n return vec2f(e0, e1);\n }\n}\n\nabstract class mat3x3Impl<TColumn extends v3f>\n implements mat3x3<TColumn>, SelfResolvable\n{\n public readonly columns: readonly [TColumn, TColumn, TColumn];\n public readonly length = 12;\n public abstract readonly kind: string;\n [n: number]: number;\n\n constructor(...elements: number[]) {\n this.columns = [\n this.makeColumn(\n elements[0] as number,\n elements[1] as number,\n elements[2] as number,\n ),\n this.makeColumn(\n elements[3] as number,\n elements[4] as number,\n elements[5] as number,\n ),\n this.makeColumn(\n elements[6] as number,\n elements[7] as number,\n elements[8] as number,\n ),\n ];\n }\n\n abstract makeColumn(x: number, y: number, z: number): TColumn;\n\n get [0]() {\n return this.columns[0].x;\n }\n\n get [1]() {\n return this.columns[0].y;\n }\n\n get [2]() {\n return this.columns[0].z;\n }\n\n get [3]() {\n return 0;\n }\n\n get [4]() {\n return this.columns[1].x;\n }\n\n get [5]() {\n return this.columns[1].y;\n }\n\n get [6]() {\n return this.columns[1].z;\n }\n\n get [7]() {\n return 0;\n }\n\n get [8]() {\n return this.columns[2].x;\n }\n\n get [9]() {\n return this.columns[2].y;\n }\n\n get [10]() {\n return this.columns[2].z;\n }\n\n get [11]() {\n return 0;\n }\n\n set [0](value: number) {\n this.columns[0].x = value;\n }\n\n set [1](value: number) {\n this.columns[0].y = value;\n }\n\n set [2](value: number) {\n this.columns[0].z = value;\n }\n\n set [3](_: number) {}\n\n set [4](value: number) {\n this.columns[1].x = value;\n }\n\n set [5](value: number) {\n this.columns[1].y = value;\n }\n\n set [6](value: number) {\n this.columns[1].z = value;\n }\n\n set [7](_: number) {}\n\n set [8](value: number) {\n this.columns[2].x = value;\n }\n\n set [9](value: number) {\n this.columns[2].y = value;\n }\n\n set [10](value: number) {\n this.columns[2].z = value;\n }\n\n set [11](_: number) {}\n\n '~resolve'(): string {\n return `${this.kind}(${this[0]}, ${this[1]}, ${this[2]}, ${this[4]}, ${this[5]}, ${this[6]}, ${this[8]}, ${this[9]}, ${this[10]})`;\n }\n}\n\nclass mat3x3fImpl extends mat3x3Impl<v3f> implements m3x3f {\n public readonly kind = 'mat3x3f';\n makeColumn(x: number, y: number, z: number): v3f {\n return vec3f(x, y, z);\n }\n}\n\nabstract class mat4x4Impl<TColumn extends v4f>\n implements mat4x4<TColumn>, SelfResolvable\n{\n public readonly columns: readonly [TColumn, TColumn, TColumn, TColumn];\n public abstract readonly kind: string;\n\n constructor(...elements: number[]) {\n this.columns = [\n this.makeColumn(\n elements[0] as number,\n elements[1] as number,\n elements[2] as number,\n elements[3] as number,\n ),\n this.makeColumn(\n elements[4] as number,\n elements[5] as number,\n elements[6] as number,\n elements[7] as number,\n ),\n this.makeColumn(\n elements[8] as number,\n elements[9] as number,\n elements[10] as number,\n elements[11] as number,\n ),\n this.makeColumn(\n elements[12] as number,\n elements[13] as number,\n elements[14] as number,\n elements[15] as number,\n ),\n ];\n }\n\n abstract makeColumn(x: number, y: number, z: number, w: number): TColumn;\n\n public readonly length = 16;\n [n: number]: number;\n\n get [0]() {\n return this.columns[0].x;\n }\n\n get [1]() {\n return this.columns[0].y;\n }\n\n get [2]() {\n return this.columns[0].z;\n }\n\n get [3]() {\n return this.columns[0].w;\n }\n\n get [4]() {\n return this.columns[1].x;\n }\n\n get [5]() {\n return this.columns[1].y;\n }\n\n get [6]() {\n return this.columns[1].z;\n }\n\n get [7]() {\n return this.columns[1].w;\n }\n\n get [8]() {\n return this.columns[2].x;\n }\n\n get [9]() {\n return this.columns[2].y;\n }\n\n get [10]() {\n return this.columns[2].z;\n }\n\n get [11]() {\n return this.columns[2].w;\n }\n\n get [12]() {\n return this.columns[3].x;\n }\n\n get [13]() {\n return this.columns[3].y;\n }\n\n get [14]() {\n return this.columns[3].z;\n }\n\n get [15]() {\n return this.columns[3].w;\n }\n\n set [0](value: number) {\n this.columns[0].x = value;\n }\n\n set [1](value: number) {\n this.columns[0].y = value;\n }\n\n set [2](value: number) {\n this.columns[0].z = value;\n }\n\n set [3](value: number) {\n this.columns[0].w = value;\n }\n\n set [4](value: number) {\n this.columns[1].x = value;\n }\n\n set [5](value: number) {\n this.columns[1].y = value;\n }\n\n set [6](value: number) {\n this.columns[1].z = value;\n }\n\n set [7](value: number) {\n this.columns[1].w = value;\n }\n\n set [8](value: number) {\n this.columns[2].x = value;\n }\n\n set [9](value: number) {\n this.columns[2].y = value;\n }\n\n set [10](value: number) {\n this.columns[2].z = value;\n }\n\n set [11](value: number) {\n this.columns[2].w = value;\n }\n\n set [12](value: number) {\n this.columns[3].x = value;\n }\n\n set [13](value: number) {\n this.columns[3].y = value;\n }\n\n set [14](value: number) {\n this.columns[3].z = value;\n }\n\n set [15](value: number) {\n this.columns[3].w = value;\n }\n\n '~resolve'(): string {\n return `${this.kind}(${Array.from({ length: this.length })\n .map((_, i) => this[i])\n .join(', ')})`;\n }\n}\n\nclass mat4x4fImpl extends mat4x4Impl<v4f> implements m4x4f {\n public readonly kind = 'mat4x4f';\n\n makeColumn(x: number, y: number, z: number, w: number): v4f {\n return vec4f(x, y, z, w);\n }\n}\n\n// ----------\n// Public API\n// ----------\n\n/**\n *\n * Schema representing mat2x2f - a matrix with 2 rows and 2 columns, with elements of type f32.\n * Also a constructor function for this matrix type.\n *\n * @example\n * const zero2x2 = mat2x2f(); // filled with zeros\n *\n * @example\n * const mat = mat2x2f(0, 1, 2, 3);\n * mat.columns[0] // vec2f(0, 1)\n * mat.columns[1] // vec2f(2, 3)\n *\n * @example\n * const mat = mat2x2f(\n * vec2f(0, 1), // column 0\n * vec2f(1, 2), // column 1\n * );\n *\n * @example\n * const buffer = root.createBuffer(d.mat2x2f, d.mat2x2f(0, 1, 2, 3)); // buffer holding a d.mat2x2f value, with an initial value of ((0, 1), (2, 3))\n */\nexport const mat2x2f = createMatSchema<'mat2x2f', m2x2f, v2f>({\n type: 'mat2x2f',\n rows: 2,\n columns: 2,\n makeFromElements: (...elements: number[]) => new mat2x2fImpl(...elements),\n}) as Mat2x2f;\n\n/**\n *\n * Schema representing mat3x3f - a matrix with 3 rows and 3 columns, with elements of type f32.\n * Also a constructor function for this matrix type.\n *\n * @example\n * const zero3x3 = mat3x3f(); // filled with zeros\n *\n * @example\n * const mat = mat3x3f(0, 1, 2, 3, 4, 5, 6, 7, 8);\n * mat.columns[0] // vec3f(0, 1, 2)\n * mat.columns[1] // vec3f(3, 4, 5)\n * mat.columns[2] // vec3f(6, 7, 8)\n *\n * @example\n * const mat = mat3x3f(\n * vec3f(0, 1, 2), // column 0\n * vec3f(2, 3, 4), // column 1\n * vec3f(5, 6, 7), // column 2\n * );\n *\n * @example\n * const buffer = root.createBuffer(d.mat3x3f, d.mat3x3f()); // buffer holding a d.mat3x3f value, with an initial value of mat3x3f filled with zeros\n */\nexport const mat3x3f = createMatSchema<'mat3x3f', m3x3f, v3f>({\n type: 'mat3x3f',\n rows: 3,\n columns: 3,\n makeFromElements: (...elements: number[]) => new mat3x3fImpl(...elements),\n}) as Mat3x3f;\n\n/**\n *\n * Schema representing mat4x4f - a matrix with 4 rows and 4 columns, with elements of type f32.\n * Also a constructor function for this matrix type.\n *\n * @example\n * const zero4x4 = mat4x4f(); // filled with zeros\n *\n * @example\n * const mat = mat3x3f(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15);\n * mat.columns[0] // vec4f(0, 1, 2, 3)\n * mat.columns[1] // vec4f(4, 5, 6, 7)\n * mat.columns[2] // vec4f(8, 9, 10, 11)\n * mat.columns[3] // vec4f(12, 13, 14, 15)\n *\n * @example\n * const mat = mat3x3f(\n * vec4f(0, 1, 2, 3), // column 0\n * vec4f(4, 5, 6, 7), // column 1\n * vec4f(8, 9, 10, 11), // column 2\n * vec4f(12, 13, 14, 15), // column 3\n * );\n *\n * @example\n * const buffer = root.createBuffer(d.mat4x4f, d.mat4x4f()); // buffer holding a d.mat4x4f value, with an initial value of mat4x4f filled with zeros\n */\nexport const mat4x4f = createMatSchema<'mat4x4f', m4x4f, v4f>({\n type: 'mat4x4f',\n rows: 4,\n columns: 4,\n makeFromElements: (...elements: number[]) => new mat4x4fImpl(...elements),\n}) as Mat4x4f;\n\nexport function matToArray(mat: m2x2f | m3x3f | m4x4f): number[] {\n if (mat.kind === 'mat3x3f') {\n return [\n mat[0],\n mat[1],\n mat[2],\n mat[4],\n mat[5],\n mat[6],\n mat[8],\n mat[9],\n mat[10],\n ] as number[];\n }\n\n return Array.from({ length: mat.length }).map((_, idx) => mat[idx] as number);\n}\n"],"mappings":"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","names":["prefix","invariant","condition","message","ResolutionError","_ResolutionError","cause","trace","entries","ancestor","newTrace","MissingSlotValueError","_MissingSlotValueError","slot","NotUniformError","_NotUniformError","value","_a","MissingLinksError","_MissingLinksError","fnLabel","externalNames","MissingBindGroupsError","_MissingBindGroupsError","layouts","layout","MissingVertexBuffersError","_MissingVertexBuffersError","resolutionCtx","provideCtx","ctx","callback","invariant","getResolutionCtx","inGPUMode","VecBase","Vec2","x","y","_a","__publicField","value","Vec3","z","_b","Vec4","w","_c","Vec2fImpl","_Vec2fImpl","Vec3fImpl","Vec4fImpl","Vec2hImpl","_Vec2hImpl","Vec3hImpl","Vec4hImpl","Vec2iImpl","_Vec2iImpl","Vec3iImpl","Vec4iImpl","Vec2uImpl","_Vec2uImpl","Vec3uImpl","Vec4uImpl","_Vec3fImpl","_Vec3hImpl","_Vec3iImpl","_Vec3uImpl","_Vec4fImpl","_Vec4hImpl","_Vec4iImpl","_Vec4uImpl","makeVecSchema","VecImpl","type","componentCount","args","values","inGPUMode","vec2f","Vec2fImpl","vec2h","Vec2hImpl","vec2i","Vec2iImpl","vec2u","Vec2uImpl","vec3f","Vec3fImpl","vec3h","Vec3hImpl","vec3i","Vec3iImpl","vec3u","Vec3uImpl","vec4f","Vec4fImpl","vec4h","Vec4hImpl","vec4i","Vec4iImpl","vec4u","Vec4uImpl","createMatSchema","options","MatSchema","args","inGPUMode","elements","arg","i","mat2x2Impl","__publicField","value","_","mat2x2fImpl","e0","e1","vec2f","mat3x3Impl","mat3x3fImpl","x","y","z","vec3f","mat4x4Impl","mat4x4fImpl","w","vec4f","mat2x2f","mat3x3f","mat4x4f","matToArray","mat","idx"]}
|
package/data/index.cjs
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkO7JKWPDHcjs = require('../chunk-O7JKWPDH.cjs');var _chunk7X4KDNDZcjs = require('../chunk-7X4KDNDZ.cjs');exports.align = _chunkO7JKWPDHcjs.Aa; exports.alignmentOf = _chunkO7JKWPDHcjs.ra; exports.arrayOf = _chunkO7JKWPDHcjs.ua; exports.atomic = _chunkO7JKWPDHcjs.ya; exports.bool = _chunkO7JKWPDHcjs.t; exports.builtin = _chunkO7JKWPDHcjs.Ga; exports.disarrayOf = _chunkO7JKWPDHcjs.wa; exports.f16 = _chunkO7JKWPDHcjs.x; exports.f32 = _chunkO7JKWPDHcjs.w; exports.float16 = _chunkO7JKWPDHcjs._; exports.float16x2 = _chunkO7JKWPDHcjs.$; exports.float16x4 = _chunkO7JKWPDHcjs.aa; exports.float32 = _chunkO7JKWPDHcjs.ba; exports.float32x2 = _chunkO7JKWPDHcjs.ca; exports.float32x3 = _chunkO7JKWPDHcjs.da; exports.float32x4 = _chunkO7JKWPDHcjs.ea; exports.formatToWGSLType = _chunkO7JKWPDHcjs.A; exports.i32 = _chunkO7JKWPDHcjs.v; exports.interpolate = _chunkO7JKWPDHcjs.Da; exports.isAlignAttrib = _chunkO7JKWPDHcjs.f; exports.isAtomic = _chunkO7JKWPDHcjs.e; exports.isBuiltin = _chunkO7JKWPDHcjs.Ea; exports.isBuiltinAttrib = _chunkO7JKWPDHcjs.j; exports.isData = _chunkO7JKWPDHcjs.s; exports.isDecorated = _chunkO7JKWPDHcjs.k; exports.isDisarray = _chunkO7JKWPDHcjs.o; exports.isInterpolateAttrib = _chunkO7JKWPDHcjs.i; exports.isLocationAttrib = _chunkO7JKWPDHcjs.h; exports.isLooseData = _chunkO7JKWPDHcjs.n; exports.isLooseDecorated = _chunkO7JKWPDHcjs.q; exports.isPtrFn = _chunkO7JKWPDHcjs.d; exports.isSizeAttrib = _chunkO7JKWPDHcjs.g; exports.isUnstruct = _chunkO7JKWPDHcjs.p; exports.isWgslArray = _chunkO7JKWPDHcjs.b; exports.isWgslData = _chunkO7JKWPDHcjs.a; exports.isWgslStruct = _chunkO7JKWPDHcjs.c; exports.location = _chunkO7JKWPDHcjs.Ca; exports.mat2x2f = _chunk7X4KDNDZcjs.z; exports.mat3x3f = _chunk7X4KDNDZcjs.A; exports.mat4x4f = _chunk7X4KDNDZcjs.B; exports.matToArray = _chunk7X4KDNDZcjs.C; exports.packedFormats = _chunkO7JKWPDHcjs.B; exports.ptrFn = _chunkO7JKWPDHcjs.va; exports.sint16 = _chunkO7JKWPDHcjs.R; exports.sint16x2 = _chunkO7JKWPDHcjs.S; exports.sint16x4 = _chunkO7JKWPDHcjs.T; exports.sint32 = _chunkO7JKWPDHcjs.ja; exports.sint32x2 = _chunkO7JKWPDHcjs.ka; exports.sint32x3 = _chunkO7JKWPDHcjs.la; exports.sint32x4 = _chunkO7JKWPDHcjs.ma; exports.sint8 = _chunkO7JKWPDHcjs.F; exports.sint8x2 = _chunkO7JKWPDHcjs.G; exports.sint8x4 = _chunkO7JKWPDHcjs.H; exports.size = _chunkO7JKWPDHcjs.Ba; exports.sizeOf = _chunkO7JKWPDHcjs.ta; exports.snorm16 = _chunkO7JKWPDHcjs.X; exports.snorm16x2 = _chunkO7JKWPDHcjs.Y; exports.snorm16x4 = _chunkO7JKWPDHcjs.Z; exports.snorm8 = _chunkO7JKWPDHcjs.L; exports.snorm8x2 = _chunkO7JKWPDHcjs.M; exports.snorm8x4 = _chunkO7JKWPDHcjs.N; exports.struct = _chunkO7JKWPDHcjs.y; exports.u32 = _chunkO7JKWPDHcjs.u; exports.uint16 = _chunkO7JKWPDHcjs.O; exports.uint16x2 = _chunkO7JKWPDHcjs.P; exports.uint16x4 = _chunkO7JKWPDHcjs.Q; exports.uint32 = _chunkO7JKWPDHcjs.fa; exports.uint32x2 = _chunkO7JKWPDHcjs.ga; exports.uint32x3 = _chunkO7JKWPDHcjs.ha; exports.uint32x4 = _chunkO7JKWPDHcjs.ia; exports.uint8 = _chunkO7JKWPDHcjs.C; exports.uint8x2 = _chunkO7JKWPDHcjs.D; exports.uint8x4 = _chunkO7JKWPDHcjs.E; exports.unorm10_10_10_2 = _chunkO7JKWPDHcjs.na; exports.unorm16 = _chunkO7JKWPDHcjs.U; exports.unorm16x2 = _chunkO7JKWPDHcjs.V; exports.unorm16x4 = _chunkO7JKWPDHcjs.W; exports.unorm8 = _chunkO7JKWPDHcjs.I; exports.unorm8x2 = _chunkO7JKWPDHcjs.J; exports.unorm8x4 = _chunkO7JKWPDHcjs.K; exports.unorm8x4_bgra = _chunkO7JKWPDHcjs.oa; exports.unstruct = _chunkO7JKWPDHcjs.xa; exports.vec2f = _chunk7X4KDNDZcjs.n; exports.vec2h = _chunk7X4KDNDZcjs.o; exports.vec2i = _chunk7X4KDNDZcjs.p; exports.vec2u = _chunk7X4KDNDZcjs.q; exports.vec3f = _chunk7X4KDNDZcjs.r; exports.vec3h = _chunk7X4KDNDZcjs.s; exports.vec3i = _chunk7X4KDNDZcjs.t; exports.vec3u = _chunk7X4KDNDZcjs.u; exports.vec4f = _chunk7X4KDNDZcjs.v; exports.vec4h = _chunk7X4KDNDZcjs.w; exports.vec4i = _chunk7X4KDNDZcjs.x; exports.vec4u = _chunk7X4KDNDZcjs.y;
|
2
2
|
//# sourceMappingURL=index.cjs.map
|
package/data/index.cjs.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":""}
|
1
|
+
{"version":3,"sources":["/Users/iwo/Projects/wigsill/packages/typegpu/dist/data/index.cjs"],"names":[],"mappings":"AAAA,kIAA6kB,yDAAuJ,wsHAAi1C","file":"/Users/iwo/Projects/wigsill/packages/typegpu/dist/data/index.cjs"}
|
package/data/index.d.cts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
import { G as Bool,
|
2
|
-
export { a9 as Align, an as AnyLooseData, aa as Builtin, D as Decorated, at as FormatToWGSLType, I as Infer, ab as Interpolate, L as Location, am as LooseDecorated, ba as PackedData, a8 as Size, au as TgpuVertexFormatData, W as WgslStruct, aV as float16, aW as float16x2, aX as float16x4, aY as float32, aZ as float32x2, a_ as float32x3, a$ as float32x4, av as formatToWGSLType, a3 as isAlignAttrib, a1 as isAtomic, a4 as isBuiltinAttrib, ar as isData, a2 as isDecorated, ao as isDisarray, a6 as isInterpolateAttrib, a5 as isLocationAttrib, as as isLooseData, aq as isLooseDecorated, a0 as isPtrFn, a7 as isSizeAttrib, ap as isUnstruct, _ as isWgslArray, Z as isWgslData, $ as isWgslStruct, aw as packedFormats, aM as sint16, aN as sint16x2, aO as sint16x4, b4 as sint32, b5 as sint32x2, b6 as sint32x3, b7 as sint32x4, aA as sint8, aB as sint8x2, aC as sint8x4, aS as snorm16, aT as snorm16x2, aU as snorm16x4, aG as snorm8, aH as snorm8x2, aI as snorm8x4, al as struct, aJ as uint16, aK as uint16x2, aL as uint16x4, b0 as uint32, b1 as uint32x2, b2 as uint32x3, b3 as uint32x4, ax as uint8, ay as uint8x2, az as uint8x4, b8 as unorm10_10_10_2, aP as unorm16, aQ as unorm16x2, aR as unorm16x4, aD as unorm8, aE as unorm8x2, aF as unorm8x4, b9 as unorm8x4_bgra, ac as v2f, ad as v2i, ae as v2u, af as v3f, ag as v3i, ah as v3u, ai as v4f, aj as v4i, ak as v4u } from '../wgslTypes-
|
3
|
-
export { A as AnyAttribute, v as AnyBuiltin, j as BuiltinClipDistances, m as BuiltinFragDepth, k as BuiltinFrontFacing, r as BuiltinGlobalInvocationId, g as BuiltinInstanceIndex, p as BuiltinLocalInvocationId, q as BuiltinLocalInvocationIndex, u as BuiltinNumWorkgroups, h as BuiltinPosition, n as BuiltinSampleIndex, o as BuiltinSampleMask, B as BuiltinVertexIndex, t as BuiltinWorkgroupId, H as HasCustomLocation, I as IsBuiltin, d as align, f as builtin, i as interpolate, e as isBuiltin, l as location, s as size } from '../attributes
|
1
|
+
import { G as Bool, F as F32, a as F16, b as I32, U as U32, A as AnyWgslData, q as WgslArray, w as AnyData, H as PtrFn, V as Vec2f, e as Vec2h, h as Vec2i, k as Vec2u, c as Vec3f, f as Vec3h, i as Vec3i, l as Vec3u, d as Vec4f, g as Vec4h, j as Vec4i, m as Vec4u, r as Disarray, B as BaseData, s as Unstruct, J as Mat2x2f, N as Mat3x3f, Q as Mat4x4f, R as m2x2f, S as m3x3f, X as m4x4f, Y as Atomic } from '../wgslTypes-D0JqCGnw.cjs';
|
2
|
+
export { a9 as Align, an as AnyLooseData, aa as Builtin, D as Decorated, at as FormatToWGSLType, I as Infer, ab as Interpolate, L as Location, am as LooseDecorated, ba as PackedData, a8 as Size, au as TgpuVertexFormatData, W as WgslStruct, aV as float16, aW as float16x2, aX as float16x4, aY as float32, aZ as float32x2, a_ as float32x3, a$ as float32x4, av as formatToWGSLType, a3 as isAlignAttrib, a1 as isAtomic, a4 as isBuiltinAttrib, ar as isData, a2 as isDecorated, ao as isDisarray, a6 as isInterpolateAttrib, a5 as isLocationAttrib, as as isLooseData, aq as isLooseDecorated, a0 as isPtrFn, a7 as isSizeAttrib, ap as isUnstruct, _ as isWgslArray, Z as isWgslData, $ as isWgslStruct, aw as packedFormats, aM as sint16, aN as sint16x2, aO as sint16x4, b4 as sint32, b5 as sint32x2, b6 as sint32x3, b7 as sint32x4, aA as sint8, aB as sint8x2, aC as sint8x4, aS as snorm16, aT as snorm16x2, aU as snorm16x4, aG as snorm8, aH as snorm8x2, aI as snorm8x4, al as struct, aJ as uint16, aK as uint16x2, aL as uint16x4, b0 as uint32, b1 as uint32x2, b2 as uint32x3, b3 as uint32x4, ax as uint8, ay as uint8x2, az as uint8x4, b8 as unorm10_10_10_2, aP as unorm16, aQ as unorm16x2, aR as unorm16x4, aD as unorm8, aE as unorm8x2, aF as unorm8x4, b9 as unorm8x4_bgra, ac as v2f, ad as v2i, ae as v2u, af as v3f, ag as v3i, ah as v3u, ai as v4f, aj as v4i, ak as v4u } from '../wgslTypes-D0JqCGnw.cjs';
|
3
|
+
export { A as AnyAttribute, v as AnyBuiltin, j as BuiltinClipDistances, m as BuiltinFragDepth, k as BuiltinFrontFacing, r as BuiltinGlobalInvocationId, g as BuiltinInstanceIndex, p as BuiltinLocalInvocationId, q as BuiltinLocalInvocationIndex, u as BuiltinNumWorkgroups, h as BuiltinPosition, n as BuiltinSampleIndex, o as BuiltinSampleMask, B as BuiltinVertexIndex, t as BuiltinWorkgroupId, H as HasCustomLocation, I as IsBuiltin, d as align, f as builtin, i as interpolate, e as isBuiltin, l as location, s as size } from '../attributes--1y4Kirx.cjs';
|
4
4
|
|
5
5
|
/**
|
6
6
|
* A schema that represents a boolean value. (equivalent to `bool` in WGSL)
|
package/data/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
import { G as Bool,
|
2
|
-
export { a9 as Align, an as AnyLooseData, aa as Builtin, D as Decorated, at as FormatToWGSLType, I as Infer, ab as Interpolate, L as Location, am as LooseDecorated, ba as PackedData, a8 as Size, au as TgpuVertexFormatData, W as WgslStruct, aV as float16, aW as float16x2, aX as float16x4, aY as float32, aZ as float32x2, a_ as float32x3, a$ as float32x4, av as formatToWGSLType, a3 as isAlignAttrib, a1 as isAtomic, a4 as isBuiltinAttrib, ar as isData, a2 as isDecorated, ao as isDisarray, a6 as isInterpolateAttrib, a5 as isLocationAttrib, as as isLooseData, aq as isLooseDecorated, a0 as isPtrFn, a7 as isSizeAttrib, ap as isUnstruct, _ as isWgslArray, Z as isWgslData, $ as isWgslStruct, aw as packedFormats, aM as sint16, aN as sint16x2, aO as sint16x4, b4 as sint32, b5 as sint32x2, b6 as sint32x3, b7 as sint32x4, aA as sint8, aB as sint8x2, aC as sint8x4, aS as snorm16, aT as snorm16x2, aU as snorm16x4, aG as snorm8, aH as snorm8x2, aI as snorm8x4, al as struct, aJ as uint16, aK as uint16x2, aL as uint16x4, b0 as uint32, b1 as uint32x2, b2 as uint32x3, b3 as uint32x4, ax as uint8, ay as uint8x2, az as uint8x4, b8 as unorm10_10_10_2, aP as unorm16, aQ as unorm16x2, aR as unorm16x4, aD as unorm8, aE as unorm8x2, aF as unorm8x4, b9 as unorm8x4_bgra, ac as v2f, ad as v2i, ae as v2u, af as v3f, ag as v3i, ah as v3u, ai as v4f, aj as v4i, ak as v4u } from '../wgslTypes-
|
3
|
-
export { A as AnyAttribute, v as AnyBuiltin, j as BuiltinClipDistances, m as BuiltinFragDepth, k as BuiltinFrontFacing, r as BuiltinGlobalInvocationId, g as BuiltinInstanceIndex, p as BuiltinLocalInvocationId, q as BuiltinLocalInvocationIndex, u as BuiltinNumWorkgroups, h as BuiltinPosition, n as BuiltinSampleIndex, o as BuiltinSampleMask, B as BuiltinVertexIndex, t as BuiltinWorkgroupId, H as HasCustomLocation, I as IsBuiltin, d as align, f as builtin, i as interpolate, e as isBuiltin, l as location, s as size } from '../attributes-
|
1
|
+
import { G as Bool, F as F32, a as F16, b as I32, U as U32, A as AnyWgslData, q as WgslArray, w as AnyData, H as PtrFn, V as Vec2f, e as Vec2h, h as Vec2i, k as Vec2u, c as Vec3f, f as Vec3h, i as Vec3i, l as Vec3u, d as Vec4f, g as Vec4h, j as Vec4i, m as Vec4u, r as Disarray, B as BaseData, s as Unstruct, J as Mat2x2f, N as Mat3x3f, Q as Mat4x4f, R as m2x2f, S as m3x3f, X as m4x4f, Y as Atomic } from '../wgslTypes-D0JqCGnw.js';
|
2
|
+
export { a9 as Align, an as AnyLooseData, aa as Builtin, D as Decorated, at as FormatToWGSLType, I as Infer, ab as Interpolate, L as Location, am as LooseDecorated, ba as PackedData, a8 as Size, au as TgpuVertexFormatData, W as WgslStruct, aV as float16, aW as float16x2, aX as float16x4, aY as float32, aZ as float32x2, a_ as float32x3, a$ as float32x4, av as formatToWGSLType, a3 as isAlignAttrib, a1 as isAtomic, a4 as isBuiltinAttrib, ar as isData, a2 as isDecorated, ao as isDisarray, a6 as isInterpolateAttrib, a5 as isLocationAttrib, as as isLooseData, aq as isLooseDecorated, a0 as isPtrFn, a7 as isSizeAttrib, ap as isUnstruct, _ as isWgslArray, Z as isWgslData, $ as isWgslStruct, aw as packedFormats, aM as sint16, aN as sint16x2, aO as sint16x4, b4 as sint32, b5 as sint32x2, b6 as sint32x3, b7 as sint32x4, aA as sint8, aB as sint8x2, aC as sint8x4, aS as snorm16, aT as snorm16x2, aU as snorm16x4, aG as snorm8, aH as snorm8x2, aI as snorm8x4, al as struct, aJ as uint16, aK as uint16x2, aL as uint16x4, b0 as uint32, b1 as uint32x2, b2 as uint32x3, b3 as uint32x4, ax as uint8, ay as uint8x2, az as uint8x4, b8 as unorm10_10_10_2, aP as unorm16, aQ as unorm16x2, aR as unorm16x4, aD as unorm8, aE as unorm8x2, aF as unorm8x4, b9 as unorm8x4_bgra, ac as v2f, ad as v2i, ae as v2u, af as v3f, ag as v3i, ah as v3u, ai as v4f, aj as v4i, ak as v4u } from '../wgslTypes-D0JqCGnw.js';
|
3
|
+
export { A as AnyAttribute, v as AnyBuiltin, j as BuiltinClipDistances, m as BuiltinFragDepth, k as BuiltinFrontFacing, r as BuiltinGlobalInvocationId, g as BuiltinInstanceIndex, p as BuiltinLocalInvocationId, q as BuiltinLocalInvocationIndex, u as BuiltinNumWorkgroups, h as BuiltinPosition, n as BuiltinSampleIndex, o as BuiltinSampleMask, B as BuiltinVertexIndex, t as BuiltinWorkgroupId, H as HasCustomLocation, I as IsBuiltin, d as align, f as builtin, i as interpolate, e as isBuiltin, l as location, s as size } from '../attributes-Dri8dk1v.js';
|
4
4
|
|
5
5
|
/**
|
6
6
|
* A schema that represents a boolean value. (equivalent to `bool` in WGSL)
|
package/data/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
import{$ as ha,A as I,Aa as Ia,B as J,Ba as Ja,C as K,Ca as Ka,D as L,Da as La,E as M,Ea as Ma,F as N,G as O,Ga as Na,H as P,I as Q,J as R,K as S,L as T,M as U,N as V,O as W,P as X,Q as Y,R as Z,S as _,T as $,U as aa,V as ba,W as ca,X as da,Y as ea,Z as fa,_ as ga,a,aa as ia,b,ba as ja,c,ca as ka,d,da as la,e,ea as ma,f,fa as na,g,ga as oa,h,ha as pa,i,ia as qa,j,ja as ra,k,ka as sa,la as ta,ma as ua,n as l,na as va,o as m,oa as wa,p as n,q as o,ra as xa,s as p,t as q,ta as ya,u as r,ua as za,v as s,va as Aa,w as t,wa as Ba,x as u,xa as Ca,y as v,ya as Ha}from"../chunk-
|
1
|
+
import{$ as ha,A as I,Aa as Ia,B as J,Ba as Ja,C as K,Ca as Ka,D as L,Da as La,E as M,Ea as Ma,F as N,G as O,Ga as Na,H as P,I as Q,J as R,K as S,L as T,M as U,N as V,O as W,P as X,Q as Y,R as Z,S as _,T as $,U as aa,V as ba,W as ca,X as da,Y as ea,Z as fa,_ as ga,a,aa as ia,b,ba as ja,c,ca as ka,d,da as la,e,ea as ma,f,fa as na,g,ga as oa,h,ha as pa,i,ia as qa,j,ja as ra,k,ka as sa,la as ta,ma as ua,n as l,na as va,o as m,oa as wa,p as n,q as o,ra as xa,s as p,t as q,ta as ya,u as r,ua as za,v as s,va as Aa,w as t,wa as Ba,x as u,xa as Ca,y as v,ya as Ha}from"../chunk-OERXDFXG.js";import{A as Ea,B as Fa,C as Ga,n as w,o as x,p as y,q as z,r as A,s as B,t as C,u as D,v as E,w as F,x as G,y as H,z as Da}from"../chunk-ZHXAQ2YE.js";export{Ia as align,xa as alignmentOf,za as arrayOf,Ha as atomic,q as bool,Na as builtin,Ba as disarrayOf,u as f16,t as f32,ga as float16,ha as float16x2,ia as float16x4,ja as float32,ka as float32x2,la as float32x3,ma as float32x4,I as formatToWGSLType,s as i32,La as interpolate,f as isAlignAttrib,e as isAtomic,Ma as isBuiltin,j as isBuiltinAttrib,p as isData,k as isDecorated,m as isDisarray,i as isInterpolateAttrib,h as isLocationAttrib,l as isLooseData,o as isLooseDecorated,d as isPtrFn,g as isSizeAttrib,n as isUnstruct,b as isWgslArray,a as isWgslData,c as isWgslStruct,Ka as location,Da as mat2x2f,Ea as mat3x3f,Fa as mat4x4f,Ga as matToArray,J as packedFormats,Aa as ptrFn,Z as sint16,_ as sint16x2,$ as sint16x4,ra as sint32,sa as sint32x2,ta as sint32x3,ua as sint32x4,N as sint8,O as sint8x2,P as sint8x4,Ja as size,ya as sizeOf,da as snorm16,ea as snorm16x2,fa as snorm16x4,T as snorm8,U as snorm8x2,V as snorm8x4,v as struct,r as u32,W as uint16,X as uint16x2,Y as uint16x4,na as uint32,oa as uint32x2,pa as uint32x3,qa as uint32x4,K as uint8,L as uint8x2,M as uint8x4,va as unorm10_10_10_2,aa as unorm16,ba as unorm16x2,ca as unorm16x4,Q as unorm8,R as unorm8x2,S as unorm8x4,wa as unorm8x4_bgra,Ca as unstruct,w as vec2f,x as vec2h,y as vec2i,z as vec2u,A as vec3f,B as vec3h,C as vec3i,D as vec3u,E as vec4f,F as vec4h,G as vec4i,H as vec4u};
|
2
2
|
//# sourceMappingURL=index.js.map
|