假设我们在结构中有一个名为“points”的数组,其类型为 Point3D,并希望在方法中使用这些点。如何从结构转移到方法?以下来自代码片段。
问候
杰米尔
public MeshGeometry3D GetMesh3D()
{
**(just here, we want to use the 3D points coming from the GetVortices method.)**
}
public Point3D[] GetVortices()
{
points[0] = new Point3D(1,1,1);
.
points[100] = new Point3D(3,1,5);
}
.
.