Freehand Drawing

Now you can add a
touch to your slides with freehand drawing

Click Pen in the toolbar or press “P

Hold shift to draw straight lines

function intersection(rectA, rectB) {
  const left = Math.max(rectA.x, rectB.x);
  const top = Math.max(rectA.y, rectB.y);
  const right = Math.min(rectA.x + rectA.width, rectB.x + rectB.width);
  const bottom = Math.min(rectA.y + rectA.height, rectB.y + rectB.height);

  return {
    x: left,
    y: top,
    width: Math.max(0, right - left),
    height: Math.max(0, bottom - top)
  };
}

Annotate your content

SIGN UP FOR FREE

Sign in to give it a try.
If you're not already a member, sign up for free.

SIGN IN

Freehand Drawing

By Slides News

Freehand Drawing

Now you can add a personal touch to your slides with freehand drawing! Use it to highlight content, draw illustrations and much more.

  • 22,699