Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions types/three/examples/jsm/nodes/Nodes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export {
abs,
sign,
length,
lengthSq,
negate,
oneMinus,
dFdx,
Expand Down
2 changes: 2 additions & 0 deletions types/three/examples/jsm/nodes/math/MathNode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export type Ternary = (
) => ShaderNodeObject<MathNode>;

export const cbrt: Unary;
export const lengthSq: Unary;
export const mix: Ternary;
export const clamp: (
a: NodeRepresentation,
Expand Down Expand Up @@ -228,6 +229,7 @@ declare module '../shadernode/ShaderNode.js' {
abs: typeof abs;
sign: typeof sign;
length: typeof length;
lengthSq: typeof lengthSq;
negate: typeof negate;
oneMinus: typeof oneMinus;
dFdx: typeof dFdx;
Expand Down