Mobile app version of vmapp.org
Login or Join
Jessie844

: Closing paths drawn with the Illustrator pencil tool? Prompted by John's question about leaving paths unclosed. Drawing with the pencil tool (or the paintbrush tool) in Illustrator leaves the

@Jessie844

Posted in: #AdobeIllustrator #Drawing #Path

Prompted by John's question about leaving paths unclosed.

Drawing with the pencil tool (or the paintbrush tool) in Illustrator leaves the paths it makes open. Unlike the pen tool, there isn't an obvious or intuitive way to close paths when you've finished drawing them.

What's the easiest way to close paths drawn with the pencil tool?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Jessie844

1 Comments

Sorted by latest first Latest Oldest Best

 

@LarsenBagley460

Closing paths as you draw them with the pencil (or paintbrush) tool

Hold down alt. Make sure you start holding it down after you start drawing (else it turns the pencil tool into the path smoothing tool) and that you've got it held down when you finish drawing the path.

It joins the start point and end point with a straight line, so you'll probably want to get the end point as close as possible to the start point - unless you want a sharp straight line



Closing paths that have already been drawn

In theory, drawing round a path with the Knife tool closes it (never works for me though).

There's a very useful simple script from pitrix.jp to close points. For each selected object, if it's an open path, the script closes it.

It's a very short script, here it is in case that link goes down (all credit, rights etc to Umezawa and www.pictrix.jp/).

// ClosePts.js
// www.pictrix.jp/ Umezawa
//

if (documents.length > 0 && activeDocument.pathItems.length > 0){


myObj = activeDocument.pathItems;
myNum = activeDocument.pathItems.length;

for ( i = 0; i < myNum; i++ ){

if( myObj[ i ].selected && ! myObj[ i ].closed ){

myObj[ i ].closed = true;

}
}
}

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme