Issues with Subdivision Surface Modifier

So. I’m working on a plasma pistol, and when I go to subdivision subsurface it, it creates an indent as if it has been hacked at with an axe or machete at the front of the back part of the iron sights. karmagun.blend (467 KB)

It’s because you’ve been trying to cut corners with your modelling.

The subsurf modifier worst best with quads. If you use triangles or in your case faces with > 4 sides expect to get artifacts. Remake your model with quads where you get the errors

Subdivision surface, subsurf in short. Subsurface: http://www.dictionary.com/browse/subsurface

The structure isn’t suitable for subdivision surface



The modifier is set to simple, which subdivides all faces without deforming it. With that it puts 4x more geometry on each subdivision level (with quadrilateral faces), optimally without changing the surface at all. That’s added geometry that doesn’t do anything to improve the form so it’s useless.

The modifier is set to be visible in edit mode, and also on the control cage. When using Catmull-Clark to refine the forms by adding more geometry and approximating the surface again, showing the subdivision on the control cage doesn’t show the actual vertex positions and if not before, building a model structure with that on you eventually end up with a mess because of that.

Subdivisions are predictable with quadrilateral face structure. Yours has n-gons and triangles that make a different pattern when subdivided https://blenderartists.org/forum/showthread.php?320119-Modelling-problem-with-mirror-modifier&p=2531191&viewfull=1#post2531191
There are also severely non-planar polygons https://blenderartists.org/forum/showthread.php?325921-Shading-Issue&p=2569443&viewfull=1#post2569443
and concave polygons https://blenderartists.org/forum/showthread.php?337775-Simple-modeling-question-Triangle-stays-when-moving-vertices&p=2653061&viewfull=1#post2653061
and there are non-manifold errors because of two interior faces https://blenderartists.org/forum/showthread.php?299535-Strange-things-when-applying-Subdivision-Surface&p=2417999&viewfull=1#post2417999

The use of subdivision surfaces is planned, including the subdivision level. The structure that is modeled is the control cage for the subdivided model, it’s not just a modifier that when added just somehow makes the model better.

Subdivision surface introduction https://vimeo.com/2450612
and couple of simple examples of structure flows for subdivision
https://blenderartists.org/forum/showthread.php?317074-model-question&p=2511317&viewfull=1#post2511317
https://blenderartists.org/forum/showthread.php?330941-Modeling-Rendering-issue&p=2603386&viewfull=1#post2603386

Okay. Thank you for the info, I’ll try redoing the broken chunks of it with it in mind.