You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using ESRI.ArcGIS.Display;
|
|
|
|
|
using ESRI.ArcGIS.Geometry;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace KGIS.PlatformPlugin.Commands.Tools.TraceTool
|
|
|
|
|
{
|
|
|
|
|
public interface ITraceFeedback : IDisplayFeedback
|
|
|
|
|
{
|
|
|
|
|
List<IPolyline> ListBeTracePolyline
|
|
|
|
|
{
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
bool IncludeAnchorFrom
|
|
|
|
|
{
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
void Start(IPoint pPoint, IPoint pPointFrom, IPoint pPointEnd);
|
|
|
|
|
IPolyline Stop(IPoint pPoint);
|
|
|
|
|
}
|
|
|
|
|
}
|