using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.Annotation.ImageCollect
{
public enum LockType
{
NULL = 0,
AREA = 1,
SIZE = 2
}
public interface DrawInterface
{
///
/// 获取拼图区域划分的网格数
///
///
int[] GetTiles();
///
/// 获取拼图区域面积
///
///
double GetArea();
void Lock(LockType lockType);
List> GetViewPoints();
void DeletePoint(int index);
void SetZAxisScan(int startStep, int stopStep, int times, int track, int pIndex);
Dictionary GetZAxisScan(int index);
}
}