My Project
IDrawing.cs
查看本檔案說明文件.
1 using ShapeLib.VShape;
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7 
8 namespace ShapeLib.VShape
9 {
10  interface IDrawing
11  {
12  void DrawShape(gView gv ,gPath data,Boolean bfirst );
13  void DisplayControlPoints(gView gv, gPath data);
14 
15 
16  }
17 }
void DisplayControlPoints(gView gv, gPath data)
void DrawShape(gView gv, gPath data, Boolean bfirst)