本文整理汇总了C#中Hare.Polygon_Vertices方法的典型用法代码示例。如果您正苦于以下问题:C# Hare.Polygon_Vertices方法的具体用法?C# Hare.Polygon_Vertices怎么用?C# Hare.Polygon_Vertices使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Hare
的用法示例。
在下文中一共展示了Hare.Polygon_Vertices方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Hare_to_RhinoMesh
public static Mesh Hare_to_RhinoMesh(Hare.Geometry.Topology T)
{
Mesh m_RhinoMesh = new Mesh();
int ct = 0;
for (int i = 0; i < T.Polygon_Count; i++)
{
Hare.Geometry.Point[] Pt = T.Polygon_Vertices(i);
int[] F = new int[T.Polys[i].VertextCT];
for (int j = 0; j < T.Polys[i].VertextCT; j++)
{
m_RhinoMesh.Vertices.Add(new Point3d(Pt[j].x, Pt[j].y, Pt[j].z) / 90);
F[j] = ct;
ct++;
}
if (F.Length == 3)
{
m_RhinoMesh.Faces.AddFace(F[2], F[1], F[0]);
}
else
{
m_RhinoMesh.Faces.AddFace(F[2], F[1], F[0], F[3]);
}
}
m_RhinoMesh.Normals.ComputeNormals();
m_RhinoMesh.Vertices.CombineIdentical(true, true);
m_RhinoMesh.Compact();
return m_RhinoMesh;
}
示例2: Plot_Hare_Topology
public static void Plot_Hare_Topology(Hare.Geometry.Topology T)
{
Mesh m_RhinoMesh = new Mesh();
int ct = 0;
for (int i = 0; i < T.Polygon_Count; i++)
{
Hare.Geometry.Point[] Pt = T.Polygon_Vertices(i);
int[] F = new int[T.Polys[i].VertextCT];
for (int j = 0; j < T.Polys[i].VertextCT; j++)
{
m_RhinoMesh.Vertices.Add(new Point3d(Pt[j].x, Pt[j].y, Pt[j].z) / 90);
F[j] = ct;
ct++;
}
if (F.Length == 3)
{
m_RhinoMesh.Faces.AddFace(F[2], F[1], F[0]);
}
else
{
m_RhinoMesh.Faces.AddFace(F[2], F[1], F[0], F[3]);
}
}
m_RhinoMesh.FaceNormals.ComputeFaceNormals();
m_RhinoMesh.Normals.ComputeNormals();
Rhino.RhinoDoc.ActiveDoc.Objects.Add(m_RhinoMesh);
}