mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 02:36:04 +10:00
- Created test_cart.p8 with basic drawing functionality and a print statement. - Created test_unix.p8 with a simple initialization function.
42 lines
891 B
JavaScript
42 lines
891 B
JavaScript
import { createNodeModule } from "../../nodeTypes.js";
|
|
|
|
/**
|
|
* Adds two numeric values.
|
|
*/
|
|
export const mathAddNode = createNodeModule(
|
|
{
|
|
id: "math_add",
|
|
title: "Add",
|
|
category: "Math",
|
|
description: "Add two numbers.",
|
|
searchTags: ["add", "math", "sum", "plus", "number", "+"],
|
|
inputs: [
|
|
{
|
|
id: "a",
|
|
name: "A",
|
|
direction: "input",
|
|
kind: "number",
|
|
defaultValue: 0,
|
|
},
|
|
{
|
|
id: "b",
|
|
name: "B",
|
|
direction: "input",
|
|
kind: "number",
|
|
defaultValue: 0,
|
|
},
|
|
],
|
|
outputs: [
|
|
{ id: "res", name: "Result", direction: "output", kind: "number" },
|
|
],
|
|
properties: [],
|
|
},
|
|
{
|
|
evaluateValue: ({ resolveValueInput }) => {
|
|
const a = resolveValueInput("a", "0");
|
|
const b = resolveValueInput("b", "0");
|
|
return `(${a}) + (${b})`;
|
|
},
|
|
}
|
|
);
|