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

                return(Coordinate_getProjPos(GetNativeReference(), ref pos, projection));
            }
コード例 #4
0
 private static extern void Coordinate_setProjPos(IntPtr nativeReference, ProjPos pos, FlatGaussProjection projection);