Direct3D: Wireframe without Diagonals - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T10:10:48Zhttp://stackoverflow.com/feeds/question/268428http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/268428/direct3d-wireframe-without-diagonals0Direct3D: Wireframe without DiagonalsAgnel Kurian2008-11-06T12:03:56Z2008-11-06T20:30:40Z
<p>When using wireframe fill mode in Direct3D, all rectangular faces display a diagonal running across due to the face being split in to two triangles. How do I eliminate this line? I also want to remove hidden surfaces. Wireframe mode doesn't do this.</p>
<p>I need to display a Direct3D model in isometric wireframe view. The rendered scene must display the boundaries of the model's faces but must exclude the diagonals. </p>
http://stackoverflow.com/questions/268428/direct3d-wireframe-without-diagonals/268454#2684541Answer by Skizz for Direct3D: Wireframe without DiagonalsSkizz2008-11-06T12:13:11Z2008-11-06T12:13:11Z<p>Getting rid of the diagonals is tricky as the hardware is likely to only draw triangles and it would be difficult to determine which edge is the diagonal. Alternatively, you could apply a wireframe texture (or a shader that generates a suitable texture). That would solve the hidden line issues, but would look odd as the thickness of the lines would be dependant on z distance.</p>
<p>Using line primitives is not trivial, although surfaces facing away from the camera can be easily removed, partially obscured surfaces would require manual clipping. As a final thought, do a two pass approach - the first pass draws the filled polygons but only drawing to the z buffer, then draw the lines over the top with suitable z bias. That would handle the partially obscured surface problem.</p>
<p>Skizz</p>
http://stackoverflow.com/questions/268428/direct3d-wireframe-without-diagonals/268781#2687810Answer by NeARAZ for Direct3D: Wireframe without DiagonalsNeARAZ2008-11-06T14:02:13Z2008-11-06T14:02:13Z<p>The built-in wireframe mode renders edges of the primitives. As in D3D the primitives are triangles (or lines, or points - but not arbitrary polygons), that means the built-in way won't cut it.</p>
<p>I guess you have to look up some sort of "edge detection" algorithms. These could operate in image space, where you render the model into a texture, assigning unique color for each logical polygon, and then do a postprocessing pass using pixel shader and detect any changes in color (color changes = output black, otherwise output something else).</p>
<p>Alternatively, you could construct a line list that only has the edges you need and just render them.</p>
<p>Yet another alternative could be using geometry shaders in Direct3D 10. Somehow, lots of different options here.</p>
http://stackoverflow.com/questions/268428/direct3d-wireframe-without-diagonals/270130#2701300Answer by faulty for Direct3D: Wireframe without Diagonalsfaulty2008-11-06T20:30:40Z2008-11-06T20:30:40Z<p>I think you'll need to draw those line manually, as wireframe mode is a built in mode, so I don't think you can modify that. You can get the list of vertex in your mesh, and process them into a list of lines that you need to draw. </p>