構造体に Point3D の型を持つ「points」という名前の配列があり、これらの点をメソッドで使用したいとします。構造体からメソッドに転送する方法は? 以下は、コード スニペットからのものです。
よろしく
セミル
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);
}
.
.