我有一个由3D点和边缘组成的3D线框。如何识别形成3D对象面的顶点集?
我正在使用<select name ="categorieProduit" required>
<option value ="cellulaire" <c:if test ="${theProduct.categorie == "cellulaire"}">selected</c:if>Cellulaire</option>
<option value ="tablette" <c:if test ="${theProduct.categorie == "tablette"}">selected</c:if>>Tablette</option>
<option value ="portable" <c:if test ="${theProduct.categorie == "portable"}">selected</c:if>>Ordinateur Portable</option>
<option value ="tv" <c:if test ="${theProduct.categorie == "tv"}">selected</c:if>>Televiseur</option>
</select>
并希望在给定其点集和边集的情况下渲染3D对象。我能做的最好的是三个点形成一个三角形的脸,我能够用3D渲染它。但是如果给出更多的点和边缘,如何做同样的事情呢?或者,或者,如何在形成三角形面的3个点的集合中分解集合?
答案 0 :(得分:0)
根据您的确切数据,边缘方向等,可能需要稍作修改,但您应该明白这一点。