Files
picoGraph/scripts/nodes/library/math/divide.js
Max Litruv Boonzaayer f917cf6ad5 Add initial Pico-8 cartridges for testing
- Created test_cart.p8 with basic drawing functionality and a print statement.
- Created test_unix.p8 with a simple initialization function.
2026-03-21 18:38:43 +11:00

42 lines
961 B
JavaScript

import { createNodeModule } from "../../nodeTypes.js";
/**
* Divides one numeric value by another.
*/
export const mathDivideNode = createNodeModule(
{
id: "math_divide",
title: "Divide",
category: "Math",
description: "Divide one number by another (floating point division).",
searchTags: ["divide", "division", "math", "slash", "number", "/"],
inputs: [
{
id: "a",
name: "A",
direction: "input",
kind: "number",
defaultValue: 0,
},
{
id: "b",
name: "B",
direction: "input",
kind: "number",
defaultValue: 1,
},
],
outputs: [
{ id: "res", name: "Result", direction: "output", kind: "number" },
],
properties: [],
},
{
evaluateValue: ({ resolveValueInput }) => {
const a = resolveValueInput("a", "0");
const b = resolveValueInput("b", "1");
return `(${a}) / (${b})`;
},
}
);