UML drawing tools
1. tools based on the script
http://www.websequencediagrams.com/
UMLet 12.1
My best two recommendations right now would be: yUML and PlantUML (http://www.plantuml.com/plantuml/form)
If you need something more complex and integrated with Eclipse try TextUML
2. Examples of PlantUML
a)
(*)--> "2D calibration"
--> "3D calibration"
--> "Z calibration & Adjust belt levels"
--> "Learn"
if "3DS Optics" then
-->[true] "Check belt vibration (without wafer)"
--> "Check belt vibration (with wafer)"
else
--> "Check belt vibration (with wafer)"
endif
--> "0-90 deg Calibration (Update Z Calibration)"
--> "5-PT TTV compensation"
--> "Thickness compensation"
--> "Check repeatability"
--> (*)
b)
Host --> "Vision Appl": Start auto run mode
"Vision Appl"-->"Vision System": Start OTF mode
"Vision Appl" --> Host: Auto run mode enabled
"Wafer" --> "Vision System": Wafer is comming
"Vision System"-->"Vision Appl": Start sensor detected
"Vision Appl"-->"Vision System": Start OTF trigger
"Vision System"-->"Vision Appl": Trigger points are triggered
"Vision Appl"-->"Vision Algorithm": Do construction & Inspection
"Vision Appl"-->"Vision System": Stop OTF trigger
"Vision Algorithm"-->"Vision Appl": Construction & Inspection done
"Vision Appl" --> Host: Wafer inspection done
Host --> "Vision Appl": Get inspection result
"Vision Appl" --> Host: Send inspection result Host --> "Vision Appl": Stop auto run mode
"Vision Appl"-->"Vision System": Stop auto run mode
"Vision Appl" --> Host: Stop auto run mode ok
UML drawing tools的更多相关文章
- UML online tools
UML online tools UML https://www.diagrams.net/assets/svg/home-dia1.svg refs https://www.diagrams.net ...
- arcmap Command
The information in this document is useful if you are trying to programmatically find a built-in com ...
- 转:Busy Developers' Guide to HSSF and XSSF Features
Busy Developers' Guide to Features Want to use HSSF and XSSF read and write spreadsheets in a hurry? ...
- DrawTools(画图工具)原始版本
上一篇文章一个优秀的C#开源绘图软件 DrawTools中详细的介绍了DrawTools的几种演化的较高版本的软件的特色与功能. 这篇文章,将介绍一下这款软件的成名版本, 下载地址DrawTool_O ...
- 一个优秀的C#开源绘图软件 DrawTools
1.Extensions to DrawTools Author Mark Miller I develop software for a leading healthcare system in N ...
- RAD XE10 Seattle
RAD Studio 10 Seattle RAD XE10 Seattle RAD 10 Seattle c++builder 10 Seattle Delphi 10 Seattle http:/ ...
- codeviz安装
1. 下载:http://www.skynet.ie/~mel/projects/codeviz/#download 结合Graphviz工具,使用CodeViz可以生成直观和漂亮的C/C++ ...
- [转] 使用CodeViz生成C/C++函数调用关系图
运行环境:虚拟机下的Ubuntu 11.04 结合Graphviz工具,使用CodeViz可以生成直观和漂亮的C/C++程序函数之间的调用关系图. 1.安装graphviz 在安装CodeViz之前, ...
- tangible T4 Editor 2.2.3 for VS2010 / VS2012 / VS2013 Preview
tangible T4 Editor 2.2.3 for VS2010 / VS2012 / VS2013 Preview angible T4 Editor 2.2.3 plus UML model ...
随机推荐
- PHImageManager 获取图片模糊
PHImageRequestOptions *options = [[PHImageRequestOptions alloc] init]; options.synchronous = true; o ...
- Android实现录屏直播(一)ScreenRecorder的简单分析
http://blog.csdn.net/zxccxzzxz/article/details/54150396 Android实现录屏直播(一)ScreenRecorder的简单分析 Android实 ...
- 来自MSDN的RibbonGadgets练习
来自MSDN的RibbonGadgets练习 RibbonGadgets是少见的来自官方的资源. 如果选择Menu Items = 集合,则会有向下的小箭头,同时会出现下来菜单. 这个都关系叫做gal ...
- 在pom.xml中使用distributionManagement将项目打包上传到nexus私服
本文介绍 如何在pom.xml中使用distributionManagement将项目打包上传到nexus私服 1.pom.xml文件添加distributionManagement节点 <!- ...
- 解决应用程序无法正常启动0xcxxxxxxxxxx问题
简述:使用VS2008写了一个MFC程序,结果传到别人的机子上(WIN7)出现应用程序正常初始化(0xc0150002)失败的问题.为什么我的机子上可以,而别人的机子上运行不了呢?下面是我找到的一个解 ...
- ubuntu16.04+七彩虹GTX1060的NVIDIA驱动+Cuda8.0+cudnn5.1+tensorflow+keras搭建深度学习环境【学习笔记】【原创】
平台信息:PC:ubuntu16.04.i5.七彩虹GTX1060显卡 作者:庄泽彬(欢迎转载,请注明作者) 说明:参考了网上的一堆的资料搭建了深度学习的开发环境,下班在宿舍折腾了好几个晚上才搞定,写 ...
- windows下通过ping和tracert工具来测试网站访问速度
一.环境 OS: windows 二.步骤 2.1.ping mirrors.163.com Pinging mirrors.163.com [23.111.1.151] with 32 bytes ...
- 【eclipse】svn在线安装
Subclipse1.8 http://subclipse.tigris.org/update_1.8.x
- Python学习札记(二十五) 函数式编程6 匿名函数
参考:匿名函数 NOTE 1.Python对匿名函数提供了有限的支持. eg. #!/usr/bin/env python3 def main(): lis = list(map(lambda x: ...
- 论OI中最大值的选取
为什么我的Floyd会输出负数啊? 为什么我的代码写对了却全都爆零了啊? 那么很可能是你的INF取大/小了! 那么inf到底应该取什么值呢? 首先,inf应该要比一般的题目中出现的数据要大,但是又不能 ...