コード例 #1
0
        public IGraphic newLine(double x1, double y1, double x2, double y2, ISpatialReference spatialReference)
        {
            IS3MapPoint p1 = new IS3MapPoint(x1, y1, spatialReference);
            IS3MapPoint p2 = new IS3MapPoint(x2, y2, spatialReference);

            return(newLine(p1, p2));
        }
コード例 #2
0
        public IGraphic newLine(double x1, double y1, double x2, double y2)
        {
            IS3MapPoint p1 = new IS3MapPoint(x1, y1);
            IS3MapPoint p2 = new IS3MapPoint(x2, y2);

            return(newLine(p1, p2));
        }
コード例 #3
0
ファイル: IS3GraphicEngine.cs プロジェクト: iS3-Project/iS3
 public IGraphic newLine(double x1, double y1, double x2, double y2, ISpatialReference spatialReference)
 {
     IS3MapPoint p1 = new IS3MapPoint(x1, y1, spatialReference);
     IS3MapPoint p2 = new IS3MapPoint(x2, y2, spatialReference);
     return newLine(p1, p2);
 }
コード例 #4
0
ファイル: IS3GraphicEngine.cs プロジェクト: iS3-Project/iS3
 public IGraphic newLine(double x1, double y1, double x2, double y2)
 {
     IS3MapPoint p1 = new IS3MapPoint(x1, y1);
     IS3MapPoint p2 = new IS3MapPoint(x2, y2);
     return newLine(p1, p2);
 }