2

在 wpf 中以编程方式创建 GeometryModel3D 立方体的最简单方法是什么?

4

1 回答 1

2

简单的方法?这一切都取决于你的观点。

我会说这种事情非常“简单”:

return new GeometryModel3D
{
  Material = ...,
  Geometry = new Geometry
  {
    Points = new Point3DCollection
    {
      new Point3D(0,0,0),
      ...
    },
    TriangleIndices = new Int32Collection
    {
      ...
    },
    ...
  },
  ...
};

但其他人可能会认为单个调用XamlReader.Parse("...put your xaml here...")更简单。

这是一个判断电话。

于 2010-02-17T01:15:23.740 回答