mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 10:46:06 +10:00
Initial commit
moved from private version control
This commit is contained in:
29
scripts/nodes/library/math/lshr.js
Normal file
29
scripts/nodes/library/math/lshr.js
Normal file
@@ -0,0 +1,29 @@
|
||||
import { createNodeModule } from "../../nodeTypes.js";
|
||||
|
||||
/**
|
||||
* Performs a logical right bit shift using lshr.
|
||||
*/
|
||||
export const mathLshrNode = createNodeModule(
|
||||
{
|
||||
id: "math_lshr",
|
||||
title: "Logical Shift Right",
|
||||
category: "Math",
|
||||
description: "Shift bits right with zeros entering from the left.",
|
||||
searchTags: ["lshr", "shift", "bitwise", "math"],
|
||||
inputs: [
|
||||
{ id: "value", name: "Value", direction: "input", kind: "number" },
|
||||
{ id: "amount", name: "Amount", direction: "input", kind: "number" },
|
||||
],
|
||||
outputs: [
|
||||
{ id: "result", name: "Result", direction: "output", kind: "number" },
|
||||
],
|
||||
properties: [],
|
||||
},
|
||||
{
|
||||
evaluateValue: ({ resolveValueInput }) => {
|
||||
const value = resolveValueInput("value", "0");
|
||||
const amount = resolveValueInput("amount", "0");
|
||||
return `lshr(${value}, ${amount})`;
|
||||
},
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user