-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
265 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,24 @@ | ||
# 访问对象 | ||
根据指定的名称,获取 *对象* 的值。 | ||
|
||
 | ||
 | ||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* Value: 数组,比如 *python* `dict` 类型, 或者 [`JsonObject`](./types/JsonObject.md) 类型 | ||
* Key: 名称,[String](./types/String.md) 类型 | ||
* 对象 | ||
> 比如 *python* 字典 `Dictionary`。 | ||
* 键: | ||
> 键名称,[String](./types/String.md) 类型。 | ||
## 输出 | ||
|
||
> 根据不同的动作,输出会不同。 | ||
> 对象。 | ||
|
||
## 脚本调用 | ||
## 其它 | ||
|
||
```python | ||
import simple | ||
|
||
|
||
``` | ||
|
||
## 示例 | ||
|
||
[https://github.com/shelllet/WinUi/blob/main/algorithm/access_array.simple](https://github.com/shelllet/WinUi/blob/main/algorithm/access_array.simple) | ||
示例:https://github.com/shelllet/WinUi/blob/main/algorithm/AccessKey.simple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# 数组长度 | ||
获取 *数组/列表* 的长度。 | ||
|
||
 | ||
 | ||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* 值 | ||
* 数据 | ||
> 可计算长度的 *数组* 或者 *字符串*。 | ||
## 输出 | ||
|
||
> 长度, [`Number`](./types/Number.md) 类型。 | ||
|
||
## 资源 | ||
## 其它 | ||
|
||
示例:https://github.com/shelllet/WinUi/blob/main/algorithm/access_size.simple | ||
示例:https://github.com/shelllet/WinUi/blob/main/algorithm/ArraySize.simple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 坐标转换 | ||
窗口坐标转屏幕坐标,或者屏幕坐标转窗口坐标。 | ||
|
||
 | ||
|
||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* 窗口 | ||
> 执行坐标转换所关联的窗口。 | ||
* 坐标 | ||
> 待转换的坐标。 窗口坐标或者屏幕坐标, 类型为:[`Point`](./types/Point.md)。 | ||
* 方法 | ||
> 坐标转换方法,参考:[PointConvertMethod](./enums/PointConvertMethod.md)。 | ||
* 标题栏 | ||
> 计算出来坐标是否包含标题栏的高度(前提是窗口有标题栏)。 | ||
## 输出 | ||
> 转换后的坐标,类型为:[`Point`](./types/Point.md)。 | ||
### 其它 | ||
|
||
示例:https://github.com/shelllet/WinUi/blob/main/algorithm/ClientToScreen.simple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
# 周长筛选 | ||
计算数组中元素的周长,筛选符合条件的元素 | ||
计算数组中元素的周长,筛选符合条件的元素。 | ||
|
||
 | ||
 | ||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
|
||
## 运行参数 | ||
* 值 | ||
> 包含多个可以计算周长的元素列表,比如检测到的轮廓列表。 | ||
* 周长 | ||
> 指定周长范围。 | ||
|
||
## 输出 | ||
> 窗口类型:`Ellipses` | ||
> 包含指定周长的元素列表。如果列表长度不为 `0`, 走左侧分支,否则走右侧分支。 | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple | ||
## 其它 | ||
|
||
``` | ||
|
||
## 示例 | ||
|
||
[https://github.com/shelllet/WinUi/blob/main/algorithm/filter_ellipse.simple](https://github.com/shelllet/WinUi/blob/main/algorithm/filter_ellipse.simple) | ||
示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterPerimeter.simple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,26 @@ | ||
# 文本筛选 | ||
在数组或者列表中,筛选包含指定文本元素。 | ||
|
||
 | ||
 | ||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* Value: 含有文本的列表,例如 *文字识别* 动作。 | ||
* 值 | ||
> 含有文本的列表,例如 *文字识别* 动作。 | ||
* [Text](./types/String.md): 文本,*字符串* 类型, 支持 [*通配符(WildCard)*](./introduction/process/wildcard.md) 匹配。 | ||
* 文本 | ||
> 文本,*字符串* 类型,参考:[String](./types/String.md), 支持 [*通配符(WildCard)*](./introduction/process/wildcard.md) 匹配。 | ||
## 输出 | ||
|
||
> 和输入类型相同 | ||
> 包含指定文本的字符串列表。如果列表长度不为 `0`, 走左侧分支,否则走右侧分支。 | ||
|
||
## 脚本调用 | ||
## 其它 | ||
|
||
```python | ||
import simple | ||
|
||
|
||
``` | ||
|
||
## 示例 | ||
|
||
[https://github.com/shelllet/WinUi/blob/main/algorithm/filter_text.simple](https://github.com/shelllet/WinUi/blob/main/algorithm/filter_text.simple) | ||
示例:https://github.com/shelllet/WinUi/blob/main/algorithm/FilterText.simple | ||
|
Oops, something went wrong.