EditMode

Relevant to Blender v2.31

When working with geometric objects in Blender, you can work in two modes: ObjectMode and EditMode. Basically, as seen in the previous section, operations in ObjectMode affect whole objects, and operations in EditMode affect only the geometry of an object, but not its global properties such as the location or rotation.

In Blender you switch between these two modes with the TAB key. EditMode only works on one object at a time: the active object. An object outside EditMode is drawn in purple in the 3D Windows (in wireframe mode) when selected; it is black otherwise. The active object is drawn black in EditMode, but each vertex is highlighted in purple (Figure 2). Selected vertices are drawn in yellow (Figure 3) and, if appropriate buttons in the Editing (F9) Context Mesh Tools 1 Panel are pressed (Draw Faces and Draw Edges) also selected edges and faces are highlighted.

Figure 2. Two pyramids, one in EditMode (left) and one in ObjectMode (right).

Figure 3. Cube with selected vertices in yellow.

Structures: Vertices, Edges and Faces

In basic meshes, everything is built from three basic structures: Vertices, Edges and Faces. (We're not talking about Curves, NURBS, and so forth here.) But there is no need to be disappointed: This simplicity still provides us with a wealth of possibilities that will be the foundation for all our models.

Vertices

A vertex is primarily a single point or position in 3D space. It is usually invisible in rendering and in ObjectMode. (Don't mistake the center point of an object for a vertex. It looks similar, but its bigger and you can't select it.)

To create a new vertex, change to EditMode, hold down CTRL, and click with the LMB. Of course, as a computer screen is two-dimensional, Blender can't determine all three vertex coordinates from one mouse click, so the new vertex is placed at the depth of the 3D cursor 'into' the screen. Any vertices selected previously are automatically connected to the new one with an edge.

Edges

An edge always connects two vertices with a straight line. The edges are the 'wires' you see when you look at a mesh in wireframe view. They are usually invisible on the rendered image. They are used to construct faces. Create an edge by selecting two vertices and pressing FKEY.

Faces

A Face is the most high level structure in a mesh. Faces are used to build the actual surface of the object. They are what you see when you render the mesh. A Face is defined as the area between either three or four vertices, with an Edge on every side. Triangles always work well, because they are always flat and easy to calculate.

Take care when using four-sided faces, because internally they are simply divided into two triangles each. Four-sided faces only work well if the Face is pretty much flat (all points lie within one imaginary plane) and convex (the angle at no corner is greater than or equal to 180 degrees). This is the case with the faces of a cube, for example. (That's why you can't see any diagonals in its wireframe model, because they would divide each square face into two triangles. While you could build a cube with triangular faces, it would just look more confusing in EditMode.)

An area between three or four vertices, outlined by Edges, doesn't have to be a face. If this area does not contain a face, it will simply be transparent or non-existent in the rendered image. To create a face, select three or four suitable vertices and press FKEY.

Basic Editing

Most simple operations from ObjectMode (like selecting, moving, rotating, and scaling) work identically on vertices as they do on objects. Thus, you can learn how to handle basic EditMode operations very quickly. The only notable difference is a new scaling option, ALT-S which scales the selected vertices along the direction of the normals (shrinks-fattens). The truncated pyramid in Figure 4, for example, was created with the following steps:

  1. Add a cube to an empty scene. Enter EditMode.

  2. Make sure all vertices are deselected (purple). Use border select (BKEY) to select the upper four vertices.

  3. Check that the scaling center is set to anything but the 3D cursor (see Figure 1 in the Section called Rotating objects in the chapter called ObjectMode), then switch to scale mode (SKEY), reduce the size, and confirm with LMB.

  4. Exit EditMode by pressing TAB.

Figure 4. Chopped-off pyramid

One Extra feature for Edit Mode is the Mirroring tool. If you have some vertices selected and you press MKEY you will be presented with a Menu containing nine options. You can select from these to mirror the selected vertice with respect to any of the X,Y or Z axis of the Global, Local, or Viewing reference.

One additional feature of EditMode is the CircleSelect mode. It is invoked by pressing BKEY twice instead of only once, as you would for BorderSelect. A light grey circle is drawn around the cursor and any LMB click selects all vertices within. NUM+ and NUM- or the MW, if any, enlarge or shrink the circle.

All operations in EditMode are ultimately performed on the vertices; the connected edges and faces automatically adapt, as they depend on the vertices' positions. To select an edge, you must select the two endpoints or either place the mouse on the edge and press CTRL-ALT-RMB. To select a face, each corner must be selected.

EditMode operations are many, and most are summarized in the Editing Context Buttons window, accessed via the ( ) header button or via F9 (Figure 5). Note the group of buttons in the Mesh Tools 1 Panel:

Figure 5. Edit Context.

Note

Of course, all these colors are customizable in the Theme editor.

With WKEY you can call up the "Specials" menu in EditMode (Figure 6). With this menu you can quickly access functions which are frequently required for polygon-modelling.

TipTip
 

You can access the entries in a PopupMenu by using the corresponding numberkey. For example, pressing WKEY and then 1KEY will subdivide the selected edges without you having to touch the mouse at all.

Figure 6. Specials Menu

Many of these actions have a button of their own in the Mesh Tools Panel of the Edit Buttons Window (Figure 5). The Remove doubles threshold can be adjusted here, too.

Mesh Undo

As of Blender 2.3 we finally have a true Undo. It works only for Meshes and only in EditMode.

Mesh undo works in the background saving copies of your mesh in memory as you make changes. Pressing the UKEY in mesh EditMode reverts to the previously saved mesh, undoing the last edit operation (Figure 7).

Undo operations are only stored for one mesh at a time. You can leave and re-enter EditMode for the same mesh without losing any undo information, but once another mesh is edited, the undo information for the first is lost.

Figure 7. Undo and Redo

Pressing SHIFT-U re-does the last undo operation (Figure 7). Pressing ALT-U brings up the Undo Menu (Figure 8). This lists all the undo steps by name so you can quickly find your way back to a known good point in your work. The ALT-U menu also contains the option All Changes. This option is more powerful than merely pressing UKEY repeatedly, and will reload the mesh data as it was at the beginning of your edit session, even if you have used up all your undo steps.

Figure 8. Undo Menu

Edit undo can be memory intensive. A mesh of 64,000 faces and verts can use over 3Mb of RAM per undo step. If you are on a machine that is strapped for RAM, in the User Preference Window, under Edit Methods, there is a NumButton for determining the maximum number of undo steps saved. The allowable range is between 1 and 64. The default is 32.