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

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