Ellipse/Circle

Draw ellipses, circles, and arcs

draw 1 credit

Ellipse/Circle

Draw ellipses, circles, and arcs

Overview

The Ellipse node draws ellipses or circles on a transparent canvas. Create filled shapes, outlined shapes, or partial arcs. The output image size matches the specified dimensions, with the ellipse fitting exactly within.

Usage Tips

  • Set equal width and height for a perfect circle
  • Use stroke_width > 0 and fill = false for ring/outline shapes
  • Adjust angle_start and angle_end for pie slices or arcs
  • Default angles (0-360) draw a complete ellipse

Common Pairings

  • Merge - Add circular badges or decorations to images
  • Mask - Use as a circular mask for cutouts
  • Composite - Layer multiple shapes in a design

Gotchas

  • The ellipse fills the entire specified size (edge to edge)
  • Angles are in degrees: 0 = right, 90 = bottom, 180 = left, 270 = top
  • Stroke extends inward from the ellipse edge

Technical Reference

Outputs

NameTypeDescription
outputImageRendered ellipse image (same size as params_size)

Parameters

NameTypeDefaultDescription
params_sizesizemap[height:200 width:200]Output image dimensions (width, height)
params_colourcolor#FF0000Fill or stroke color
params_stroke_widthnumber0Stroke width (0 for filled)
params_fillbooleantrueFill the ellipse (true) or just outline (false)
params_angle_startangle0Arc start angle in degrees
params_angle_endangle360Arc end angle in degrees