Hey all.
Got a bit of a technical question for you... when it comes to modeling world geometry, are "floating edges" a bad thing? IE edges that aren't connected back down into nearby verts like the two in this image:
![floating_edges.jpg](http://www.torquemod.com/floating_edges.jpg)
I can understand on a mesh that's going to be deforming a lot like a character this would cause weird problems when the edges collapse, but on world models like chairs, tables etc. that aren't really going to be deforming is there really an issue?
Would there possible be any technical issues such as lighting that could come up because of this? Its my first time working on a retail project and I want to make sure I'm doing things properly.
Thanks!
Replies
With all the talk about how quads are so important, it can leave one thinking that tris are a bad thing. Ultimately the reason I don't want to connect it to another vert is simply cause it saves time... especially if there's no real downside to it. But I guess you're right that its better to model properly now and not worry than find out that its going to take more time to fix later like after unwrapping.
The main reason I decided to ask was because I'm not sure if it IS considered improper modeling. If its not creating an open edge and its not likely to cause lighting issues, is it really that bad?
I leave 5+ sided planar polys on hard edged environment meshes like that all the time, I just do a quick check to make sure it is lighting correctly in engine and nothing looks funky. I used to be ocd about tying off every edge like that in the past, but after a while you learn to pick your battles and only spend your time on stuff that really matters.
That said, I wouldn't leave anything like that showing on a portfolio piece, only during a busy production schedule.
Yeah definitely not for my portfolio so no worries there.
Thanks for the feedback everyone!
The whole "everything must be quads" thing has been discussed on polycount a few times before. For highpoly stuff it's often a good thing to keep stuff quads, especially if you wanna take it into zbrush or mudbox. And for characters you wanna make sure that the areas that will deform a lot has proper edgeloop and quads (such as armpits, elbows, faces, etc.) But highpoly hardsurface models can have triangle or 5+ sided polygons, I think as long as it doesn't deform it's pretty much anything goes if it looks in the final.
As for game models it doesn't really matter what you use. When it's being handled inside the game engine it'll be handled as all triangles anyway. Some people even decide to model parts of a model completely as triangle just so they can affect how the shading works. So sometimes triangles can be a better pick over quads in this case. As for 5+ sided faces, they won't really harm your model but you will not have any influence as to how they get triangulated in an engine, so if it's only a few seconds you're saving out I'd say just cut that extra poly so you know the engine can't mess it up for you.
In the case you are showing in the image I'd personally cut the triangles by hand, this way you're sure you won't get long thin stretched triangles. If they are however bigger and flat surfaces I'd say just leave them open, just make sure you don't get any long stretched triangles.
It's a good habit to get into, too. Perhaps it's not too important here but I've seen this sort of thing really bite people in the ass, especially if there's more than one 3D app being used in the pipeline.
I avoid NGons like the plague, because not matter what I do, they will always screw me over later. Changing render engine, lack of proper shading, changing 3DS Packages, etc, simply outweigh the benefits of it.
If it's a flat surface in your 3DS Package of choice which can be sent between softwares with no problems, then yeah, a few NGons won't hurt, but for SubD level modeling and other nicknacks that need exporting, no, I refuse to believe anyone got them to behave as they wanted without a headbang.
Also, as Talon said, just Tri it off. It's easier and will be alot less of a headache.
I'll definitely connect everything up then... or maybe in this instance, since I've already got the extrude made, I should just delete the face behind that I split, and then re-cap the loop so its two separate pieces
The main reason for this is that in some instances you'll be able to see through that junction. The cause has to do with math and rounding errors... basically, if you have a regular corner, and that vertex is located at [0,0,12.34567], that Z coordinate may get rounded to [0,0,12.346]. So long as all faces connected to it round the same way, you're fine. BUT, if you have a T-Junction, the vertices aren't in the same location. While the first coordinate is getting rounded UP, the other end might get rounded DOWN from [0,0,1.111111] to [0,0,1.111]. The difference in things being rounded up on one end and down on the other can cause a slight hole in your geometry. It'll basically be too small to see, but lights and other objects will be visible through it at times, and you'll get a flicker or some aliasing problems.
I'm not sure if this is the same in all engines, but I know that it's a big no-no here. To fix it I'd just put a vertex on the opposing face so that they match up, and connect them with Tri's. Actually, in your case, I'd remove that vertex altogether and triangulate the beveled part down towards the next vertex (which is also a T-Junction, so you'd need to fix that as well). Doing that'll actually drop your polycount slightly, as well. You don't have to make them all quads to fix it, you just need an adjoining face on the other end.
Things will probably look crazy once you soften the edges btw, and in some cases having topology that doesn't match connected can cause problems with your normalmap bakes.
@ leechdemon - thanks for the technical answer. It's good to know WHY something is bad rather than to just be told it's bad. Actually I've seen the holes you're talking about show up occasionally in games before... I always just called it tearing, but it's nice to know why it happens.
I was just going to say this. I would just connect those edges straight up to the face corners and be happy with that. Less tris for free is always a good thing
Yeah I agree, I mean it doesn't take long to do it "right" either. Personally at work I don't like to encounter this sort of modeling, especially if you got a really large object to deal with or maybe a whole scene full of them (yep it has happened to me). But it might be because mainly when I encounter this the object/scene is full of non-manifold edges, polys welded together in all sorts of weird ways, it's sloppy and to me I get the feeling that the person is unorganized. :poly117:
But that's just me
All I'm saying is that you should know the reasons something is bad so you can decide on a case by case basis when it is necessary and not rely on blanket statements. You have to know the rule so that you know when it is ok to break it, and I think that is what he wanted to know.
I'm primarily talking about planar ngons, not non-planar ones.