Hi All,
Let's assume we have an array named "points" having the type of Point3D in a struct and want to use these points in a method. How to transfer from the struct to the method ? The following are from the code snippet.
Regards
Cemil
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);
}
.
.