public static unsafe int proj_trans_generic(IntPtr p, PJ_DIRECTION direction, double *points, int pointCount)
 {
     return(proj_trans_generic(p, direction, points, 16, pointCount,
                               points + 1, 16, pointCount,
                               null, 0, 0,
                               null, 0, 0));
 }
 public static extern unsafe int proj_trans_generic(IntPtr P,
                                                    PJ_DIRECTION direction,
                                                    double *x, int sx, int nx,
                                                    double *y, int sy, int ny,
                                                    double *z, int sz, int nz,
                                                    double *t, int st, int nt
                                                    );
Beispiel #3
0
 public static extern PJ_COORD proj_trans(IntPtr Proj, PJ_DIRECTION direction, PJ_COORD coord);