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 ...
随机推荐
- 第7章 调试和错误处理 7.1.1 VS中的调试
VS有一个输出窗口,调用方法是 需要注意的是,这个窗口有两个模式,使用其中的下拉列表就可以选择这些模式.可以在Build和Debug模式之间切换.Build和Debug模式分别显示编译和运行期间的信息 ...
- jsoop_封装
<script> //java.utils.ArrayList() //包(命名空间) /* var java = {}; java.utils = {}; java.utils.Arra ...
- python爬虫scrapy学习之篇二
继上篇<python之urllib2简单解析HTML页面>之后学习使用Python比较有名的爬虫scrapy.网上搜到两篇相应的文档,一篇是较早版本的中文文档Scrapy 0.24 文档, ...
- 使用H5 canvas画一个坦克
具体步骤如下: 1. 首先做出绘图区,作为坦克的战场 <canvas id="floor" width="800px" height=&quo ...
- Html中的表格
表格由<table>标签来定义.每个表格均有若干行(由<tr> 标签定义),每行被分割为若干单元格(由<td>标签定义). 字母 td 指表格数据(table da ...
- 过滤器系列(三)—— RSQF
这个过滤器本身是一篇论文中提出的过滤器的简化版本,去掉了计数功能,我觉得简化版本应用的可能也很广,专门写一篇简化版本的RSQF.RSQF全称是rank-and-select based filter, ...
- HTML字符转码
以下是HTML特殊字符的编码表: 标记 编码 实际名称 ™ ™ € € Space ! ! " " " # # $ $ % % & & & ' ...
- gradle ssh 插件
org.hidetake.ssh Gradle SSH Plugin is a Gradle plugin which provides remote command execution and fi ...
- hdu 3696 10 福州 现场 G - Farm Game DP+拓扑排序 or spfa+超级源 难度:0
Description “Farm Game” is one of the most popular games in online community. In the community each ...
- poj2159
题解: 记录一下每个串每个字母出现的次数 排序 然后看看是否相等 代码: #include<cstdio> #include<cstring> #include<cstr ...