2017-12-06 9 views
2

GraphicsPathからポイントを消去できる消しゴムツールを作ろうとしています。これまでのところ、私のコードはユーザーがフォームにペイントすることを可能にし、 "消去"ボタンはGraphicsPathの最初の20ポイントを消去するはずです。 2つの区別可能な図面が作成され、「消去」ボタンが押されるまで動作します。画像に表示されるように、2つの図面が接続されます。私はGraphicsPathが(それぞれの点を接続する)それ自身を閉じると思う。GraphicsPathを終了させないようにする方法

GraphicsPathが各ポイントに接続しないようにする方法はありますか?

ここに私のフルコードです。私は最も関連性の高い部分が下部の機能だと思う。

using System; 
using System.Collections.Generic; 
using System.Drawing; 
using System.Drawing.Drawing2D; 
using System.Linq; 
using System.Windows.Forms; 

namespace Cartographer 
{ 
    public partial class testform : Form 
    { 

     private GraphicsPath _drawingPath = new GraphicsPath(); 
     private Point lastMouseLocation; 
     private bool drawing = false; 

     public testform() 
     { 
      InitializeComponent(); 
     } 

     private void testform_Load(object sender, EventArgs e) 
     { 
      this.Paint += Testform_Paint; 
      this.MouseMove += Testform_MouseMove; 

      this.DoubleBuffered = true; 
     } 

     private void Testform_MouseMove(object sender, MouseEventArgs e) 
     { 
      if (e.Button == MouseButtons.Left) 
      { 
       drawing = true; 
       _drawingPath.AddLine(lastMouseLocation, e.Location); 
       Invalidate(); 
      } 

      if (e.Button == MouseButtons.None && drawing) 
      { 
       drawing = false; 
       _drawingPath.StartFigure(); // problem is not due to this line 


      } 
      lastMouseLocation = e.Location; 
     } 

     private void Testform_Paint(object sender, PaintEventArgs e) 
     { 

      e.Graphics.InterpolationMode = InterpolationMode.HighQualityBilinear; 
      e.Graphics.CompositingQuality = CompositingQuality.HighQuality; 
      e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; 
      e.Graphics.SmoothingMode = SmoothingMode.AntiAlias; 

      using (SolidBrush b = new SolidBrush(Color.Blue)) 
      using (Pen p = new Pen(b, 51)) 
      { 
       p.StartCap = System.Drawing.Drawing2D.LineCap.Round; 
       p.EndCap = System.Drawing.Drawing2D.LineCap.Round; 
       p.Alignment = System.Drawing.Drawing2D.PenAlignment.Inset; 

       e.Graphics.DrawPath(p, _drawingPath); 

      } 

      using (SolidBrush b = new SolidBrush(Color.LightGreen)) 
      using (Pen p = new Pen(b, 50)) 
      { 
       p.StartCap = System.Drawing.Drawing2D.LineCap.Round; 
       p.EndCap = System.Drawing.Drawing2D.LineCap.Round; 
       p.Alignment = System.Drawing.Drawing2D.PenAlignment.Inset; 

       e.Graphics.DrawPath(p, _drawingPath); 
      } 

     } 

     private void btnErase_Click(object sender, EventArgs e) 
     { 
      List<PointF> ptsList = new List<PointF>(); 
      for (int i = 0; i < 20; i++) 
      { 
       ptsList.Add(_drawingPath.PathData.Points[i]); 
      } 

      _drawingPath = ErasePointsFromPath(_drawingPath, ptsList.ToArray<PointF>()); 
      this.Invalidate(); 
     } 

     private GraphicsPath ErasePointsFromPath(GraphicsPath path, PointF[] toRemove) 
     { 
      PointF[] newPoints = path.PathData.Points.Except<PointF>(toRemove).ToArray<PointF>(); 
      byte[] types = new byte[newPoints.Length]; 
      for (int i = 0; i < newPoints.Length; i++) 
      { 
       types[i] = 1; 
      } 

      GraphicsPath ret = new GraphicsPath(newPoints, types); 
      //ret.SetMarkers(); 
      return ret; 
     } 
    } 
} 

これは起こります。図中の2つの丸い線は別々のものであり、その斜めの線で結ばれていないと考えられる。あなたは消去したいものを除く、新しいパスにコピーすることにより、そうしているパスからポイントを消去

thing

答えて

1

。しかし、最初のパスから対応するポイントタイプの情報もコピーしていません。代わりに、何らかの理由ですべてのポイントタイプを1にリセットします。これは、パス内の各図形の開始位置に関する情報を失います。だから何が起こるかは、新しい道が一つの長くつながった姿を見て、あなたが見ているものを説明しています。あなたがパスから最初のn ポイントを消去したい場合は
、あなたはこの代わりのようなものを試してみてください:

private void btnErase_Click(object sender, EventArgs e) 
{ 
    int numberOfPointsToErase = 20; 

    if (_drawingPath.PointCount > numberOfPointsToErase) 
    { 
     _drawingPath = new GraphicsPath(
      _drawingPath.PathPoints.Skip(numberOfPointsToErase).ToArray(), 
      _drawingPath.PathTypes.Skip(numberOfPointsToErase).ToArray() 
     ); 
    } 
    else 
    { 
     _drawingPath.Reset(); 
    } 

    this.Invalidate(); 
} 
関連する問題