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:
65
scripts/nodes/library/graphics/ovalfill.js
Normal file
65
scripts/nodes/library/graphics/ovalfill.js
Normal file
@@ -0,0 +1,65 @@
|
||||
import { createNodeModule } from "../../nodeTypes.js";
|
||||
|
||||
/**
|
||||
* Draws a filled oval.
|
||||
*/
|
||||
export const ovalfillNode = createNodeModule(
|
||||
{
|
||||
id: "graphics_ovalfill",
|
||||
title: "Draw Filled Oval",
|
||||
category: "Graphics",
|
||||
description: "Render a filled ellipse using the provided bounding box.",
|
||||
searchTags: ["oval", "ellipse", "filled", "shape"],
|
||||
inputs: [
|
||||
{ id: "exec_in", name: "Exec", direction: "input", kind: "exec" },
|
||||
{
|
||||
id: "x0",
|
||||
name: "X0",
|
||||
direction: "input",
|
||||
kind: "number",
|
||||
defaultValue: 0,
|
||||
},
|
||||
{
|
||||
id: "y0",
|
||||
name: "Y0",
|
||||
direction: "input",
|
||||
kind: "number",
|
||||
defaultValue: 0,
|
||||
},
|
||||
{
|
||||
id: "x1",
|
||||
name: "X1",
|
||||
direction: "input",
|
||||
kind: "number",
|
||||
defaultValue: 8,
|
||||
},
|
||||
{
|
||||
id: "y1",
|
||||
name: "Y1",
|
||||
direction: "input",
|
||||
kind: "number",
|
||||
defaultValue: 8,
|
||||
},
|
||||
{ id: "color", name: "Color", direction: "input", kind: "number" },
|
||||
],
|
||||
outputs: [
|
||||
{ id: "exec_out", name: "Exec", direction: "output", kind: "exec" },
|
||||
],
|
||||
properties: [],
|
||||
},
|
||||
{
|
||||
emitExec: ({ indent, indentLevel, resolveValueInput, emitNextExec }) => {
|
||||
const x0 = resolveValueInput("x0", "0");
|
||||
const y0 = resolveValueInput("y0", "0");
|
||||
const x1 = resolveValueInput("x1", "8");
|
||||
const y1 = resolveValueInput("y1", "8");
|
||||
const color = resolveValueInput("color", "__pg_omit__");
|
||||
const args = [x0, y0, x1, y1];
|
||||
if (color !== "__pg_omit__") {
|
||||
args.push(color);
|
||||
}
|
||||
const line = `${indent(indentLevel)}ovalfill(${args.join(", ")})`;
|
||||
return [line, ...emitNextExec("exec_out")];
|
||||
},
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user