I need a double[] and I have a Point3d or a Vector3d. How can I convert a Point or a Vector to a double[]? I create the Point and the Vector with following Code:
Point3d pos1 = new Point3d();
Point3d pos2 = new Point3d();
GetPosition(out pos1, out pos2);
Vector3d a = new Vector3d(pos1.X, pos1.Y, pos1.Z);
double[] move_mapped = new double[3];