> ## Documentation Index
> Fetch the complete documentation index at: https://rive-update-scripting-docs-885.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Edit Vertices

> No matter the type of vector you create, you can edit the vertices by changing their position or handles in both design and animate mode.

export const YouTube = ({id, timestamp}) => {
  const videoSrc = timestamp ? `https://www.youtube.com/embed/${id}?start=${timestamp}` : `https://www.youtube.com/embed/${id}`;
  return <iframe width="100%" height="400" src={videoSrc} title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerPolicy="strict-origin-when-cross-origin" allowFullScreen />;
};

## Edit vertices mode

To enter Edit Vertices mode, either select the shape and hit enter twice or select a path and hit enter once.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/EVM.gif?s=7f14c7ce510c8af341679da9b378167e" alt="Entering Edit Vertices mode to show the vertices and bezier handles of a rectangle on the stage" width="800" height="458" data-path="images/EVM.gif" />

After activating Edit Vertices mode, you can select any vertex, reposition it, and edit the bezier handles.

<Tip>
  Use [Deep Select](/editor/interface-overview/selection-and-navigation#deep-select) to select a specific path inside nested groups on the stage.
</Tip>

### Path options

Each path in Edit Vertices mode has a set of path options at the top of the Inspector.

**Done Editing Button**

The Done Editing button can be used to exit Edit Vertices Mode.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/DoneEdit.png?fit=max&auto=format&n=GEvGteylTumlGQo0&q=85&s=b1539884690c05c7e176a1f7c2788ae9" alt="Done Editing button at the top of the path options in the Inspector" width="2808" height="1606" data-path="images/DoneEdit.png" />

**Open Path**

The Open Path button will disconnect the last vertex from the first vertex.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/OpenPath.png?fit=max&auto=format&n=GEvGteylTumlGQo0&q=85&s=6f9f7a3a2695809f479774cc022580a9" alt="Open Path button in the path options at the top of the Inspector, right below the Done Editing button" width="2808" height="1606" data-path="images/OpenPath.png" />

**Reverse Direction**

<YouTube id="zp2NNsSTfO8" />

The Reverse Direction button can be used to reverse the direction of the path. Depending on the Fill-Rule, this can eliminate holes in our shape by changing the mathematical value of the selected path.

**Convert Radial Corners**

Straight vertices with a corner radius will deform when the scale transform is applied to the shape or path layer. You can convert radial corners from a procedural property to a defined set of vertices. This process will eliminate deformation of the corner.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/convert.gif?s=d1a405f6c4336eb9d41f49959ffcba94" alt="Convert Radial Corners button in the path options converts a single rounded corner into two vertices on the stage" width="800" height="458" data-path="images/convert.gif" />

## Bezier handles

**‌Straight**

‌The default handles are set to straight, which creates straight edges between vertices.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/Straight.png?fit=max&auto=format&n=GEvGteylTumlGQo0&q=85&s=434e79e1b39a253bfb4659e1a168a630" alt="Straight handle type selected in the bezier handle options" width="2808" height="1606" data-path="images/Straight.png" />

**Corner Radius**

The Corner Radius property allows you to round straight corners. This property only appears on vertices that are set to straight.

**‌Mirrored**

‌Mirrored is the default handle when you create a vertex by clicking and dragging. These handles always keep the same rotation and length.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/I5OI6g_1SqTFIRrb/images/mirriored.gif?s=de8dbbb2a5415ca33486a44cd3c05a53" alt="Mirrored bezier handles on a vertex mirroring each other as they are dragged" width="800" height="458" data-path="images/mirriored.gif" />

**‌Detached‌**

Detached handles allow each handle to have its own rotation and length.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/detached.gif?s=ad11ebc84088898fd621e532fd721ae6" alt="Detached bezier handles on a vertex, each being dragged independently" width="800" height="459" data-path="images/detached.gif" />

**‌Asymmetric**

‌Asymmetric handles share the same rotation but can have lengths independently of each other.

<img src="https://mintcdn.com/rive-update-scripting-docs-885/GEvGteylTumlGQo0/images/asem.gif?s=80ac125fe9a8e89866e607fce30572f4" alt="Asymmetric bezier handles on a vertex sharing the same rotation but dragged to independent lengths" width="800" height="459" data-path="images/asem.gif" />
