Exemplo n.º 1
0
        void SbConnectPLtoDL_Click(object sender, EventArgs e)
        {
            ReadData();

            ConnectPolyLine Command = new ConnectPolyLine();

            Command.AttachAtLine();
        }
Exemplo n.º 2
0
        // 버튼 > 바운더리 테스트
        void simpleButton6_Click(object sender, EventArgs e)
        {
            ReadData();

            ConnectPolyLine Command = new ConnectPolyLine();

            Command.ReflectVector();
        }
Exemplo n.º 3
0
        void SbLineToPL_Click(object sender, EventArgs e)
        {
            ReadData();

            var Command = new ConnectPolyLine();

            Command.CreatePolyline();
        }
Exemplo n.º 4
0
        void SbMergePL_Click(object sender, EventArgs e)
        {
            ReadData();

            var Command = new ConnectPolyLine();

            Command.SimplifyPolyline();
        }
Exemplo n.º 5
0
        // 버튼 > 사용자가 그린 선분에 Polyline 붙이기
        private void Sb_AttachPolylineToLine_Click(object sender, EventArgs e)
        {
            ReadData();

            ConnectPolyLine Command = new ConnectPolyLine();

            Command.AttachAtLine();
        }
Exemplo n.º 6
0
        // 버튼 > 폴리라인의 불필요한 점 제거
        private void Sb_RefinePolyline_Click(object sender, EventArgs e)
        {
            ReadData();

            ConnectPolyLine Command = new ConnectPolyLine();

            Command.SimplifyPolyline();
        }
Exemplo n.º 7
0
        // 버튼 > 연속된 Line을 Polyline으로 변환
        private void Sb_ConnectLines_Click(object sender, EventArgs e)
        {
            ReadData();

            ConnectPolyLine Command = new ConnectPolyLine();

            Command.CreatePolyline();
        }