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つの丸い線は別々のものであり、その斜めの線で結ばれていないと考えられる。あなたは消去したいものを除く、新しいパスにコピーすることにより、そうしているパスからポイントを消去