2022-04-21 14:10:04 +08:00
|
|
|
|
using CommonMethods.Interface;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using CommonMethods;
|
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
|
|
namespace EyeHandCalibTool
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EyeHandCalibRun : IToolRun
|
|
|
|
|
|
{
|
2022-05-09 16:17:41 +08:00
|
|
|
|
public void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList, IVisionJob runJob, Form myHalconWindowForm)
|
2022-04-21 14:10:04 +08:00
|
|
|
|
{
|
|
|
|
|
|
// throw new NotImplementedException();
|
2022-05-09 16:17:41 +08:00
|
|
|
|
|
2022-04-21 14:10:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|