q5play
    Preparing search index...

    Function noStroke

    • 💅 After calling this function, drawing will not have a stroke (outline).

      Returns void

      await Canvas(200);
      background(0.8);
      fill(0.14);
      stroke('red');
      circle(-20, -20, 80);

      noStroke();
      square(-20, -20, 80);