Circular

Sector

Example of a sector.

const n = {
  x: 0,
  y: 0,
  shapes: c.sector.shapes({ radius0: 64, radius1: 96, start: 60, end: 120 }, circularStyle.normal),
}
graph.updateQueue(0, [[n]]);
ptySector

Pie

Example of a pie.

const n = {
  x: 0,
  y: 0,
  shapes: c.pie.shapes({ radius: 72, start: 30, end: 60 }, circularStyle.normal),
};
graph.updateQueue(0, [[n]]);
ptyPie