Ejemplo n.º 1
0
 private static extern bool Coordinate_getProjPos(IntPtr nativeReference, ref ProjPos pos, FlatGaussProjection projection);
Ejemplo n.º 2
0
 public void SetProjPos(ProjPos pos, FlatGaussProjection projection = FlatGaussProjection.RT90)
 {
     Coordinate_setProjPos(GetNativeReference(), ref pos, projection);
 }
Ejemplo n.º 3
0
            public bool GetProjPos(out ProjPos pos, FlatGaussProjection projection = FlatGaussProjection.RT90)
            {
                pos = new ProjPos();

                return(Coordinate_getProjPos(GetNativeReference(), ref pos, projection));
            }
Ejemplo n.º 4
0
 private static extern void Coordinate_setProjPos(IntPtr nativeReference, ProjPos pos, FlatGaussProjection projection);