17
$\begingroup$

why does the loop-cut-and-slide operation ignore certain faces but happily cut others?the model is symmetrical so it is a bit strange to pick 3 faces that won't get cut. I tried applying it to see if it was just a graphics glitch causing the purple line to not display over everything, but it did end up cutting only what the line was selecting, instead of the whole mesh.

space model with bad cutting

as requested,here's a paste of the blend: http://www.pasteall.org/blend/27821

$\endgroup$
4
  • $\begingroup$ Hard to say just by looking but you more than likely have inside or duplicate faces. Share the model so we can have a look at it. $\endgroup$
    – iKlsR
    Commented Mar 23, 2014 at 22:20
  • $\begingroup$ where should I upload it? $\endgroup$
    – ZCoder
    Commented Mar 23, 2014 at 22:23
  • $\begingroup$ @ZCoder PasteAll is a nice blender specific site $\endgroup$
    – gandalf3
    Commented Mar 23, 2014 at 23:34
  • $\begingroup$ Related: blender.stackexchange.com/a/3632/599 $\endgroup$
    – gandalf3
    Commented Mar 23, 2014 at 23:36

3 Answers 3

16
$\begingroup$

First you should fix the mesh. This might be part of the problem.

  1. Remove the double geometry, W -> Remove Doubles

  2. Select all geometry, A

  3. Recalculate the normals, Ctrl N

Does the problem persist? If so you might have to do some manual cleanup. The problem might be that you have ngons in your mesh.

  1. To see if you bad geometry go into vertices mode and Shift Ctrl Alt M to select all non-manifold geometry. If something was selected near at the place where the edge loop does not work that also indicates a problem, if not there still might be a problem

  2. Also to select all n-gons you can do Select -> Select Faces by Sides. Set the number to 4 and the type to Greater Than If you have n-gons they will now be selected.

  3. Go into vertices mode, in face mode it is harder to stop ngons

  4. If you see that there are random vertices along the edges you should delete them, x -> dissolve vertices.

An example of a random vertex along an edge

enter image description here

$\endgroup$
3
  • $\begingroup$ what does non-manifold mean and how do I fix it? when selecting non-manifold geometry it highlighted edges that are necessary for the model's definition. $\endgroup$
    – ZCoder
    Commented Mar 23, 2014 at 23:29
  • $\begingroup$ @ZCoder See blender.stackexchange.com/q/7910/599. It's possible you have duplicate edges/faces or something.. $\endgroup$
    – gandalf3
    Commented Mar 23, 2014 at 23:35
  • $\begingroup$ I've been struggling with this issue after extruding a face. Thanks $\endgroup$ Commented Apr 8, 2017 at 13:44
10
$\begingroup$

You have some internal faces (which result in non-manifold geometry):

enter image description here

If you delete them, loop cut works again:

enter image description here

The reason those faces are considered non-manifold is because they have no thickness (they are 2D).

Assuming those faces are desired for a cockpit, try creating a second mesh inside the first (with the normals facing the opposite way) to create a manifold cockpit. The solidify modifier is good for this.

enter image description here

Think of the gaps between the meshes where the normals are facing away as solid, and the faces more as interfaces between solids and air.

Example .blend

$\endgroup$
5
  • $\begingroup$ so if I copy and paste that mesh I can detach it from the canopy/body mesh and it will still look the same? $\endgroup$
    – ZCoder
    Commented Mar 24, 2014 at 0:17
  • $\begingroup$ @ZCoder I'm not sure what you mean.. Which mesh? $\endgroup$
    – gandalf3
    Commented Mar 24, 2014 at 0:31
  • $\begingroup$ right now the body is all one piece(except the trailfx holders and ball-turrets). the canopy is transparent so something needs to be under it to keep the insides from being visible, hence the cockpit. I was curious if I could just rip/detach that mesh from the main mesh but keep the locations,etc $\endgroup$
    – ZCoder
    Commented Mar 24, 2014 at 1:40
  • $\begingroup$ You could, (loop cut would work), but you would still have a non-manifold mesh (it could not exist in the real world). $\endgroup$
    – gandalf3
    Commented Mar 24, 2014 at 6:42
  • $\begingroup$ I had a face underneath two other faces, made from the vertices of the outer edges of the two faces. removing it did the trick, thank you. $\endgroup$
    – Fire Crow
    Commented Feb 5, 2021 at 3:48
4
$\begingroup$

Loop cuts don't work on:

1-Duplicated vertices or faces. (To correct that use "remove doubles" or "merge")

2-Triangles or Polygons with more than 4 vertices. (Loop cuts work only in quads).

3- Edges that do not share the same vertices.

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .