/** * 节点类型 * @author wangchuitong */ export enum Fields_node_type{ rect = 1, circle, image, text, path, } /** * 工具类型 * @author wangchuitong */ export enum Fields_tool_type{ rect = 1, circle, image, text, path, export_png, } /** * 双击时间间隔 * @author wangchuitong */ export const Const_double_click_interval = 200;