CREATE PATH: Difference between revisions
From Macros Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Operations:Operation_Tool-Path|{{Up}}]] | [[Operations:Operation_Tool-Path|{{Up}}]] | ||
{{Command|syntax=CREATE_PATH <path number>, < | {{Command|syntax=CREATE_PATH <path number>, <xs>, <ys>, <zs> | ||
|description=: | |description=:Create a numbered [[macro path]]. This path must have been defined by the [[DEFINE_PATH_LIST]] command. | ||
|param1=<path number>|param1_desc={{path number}} | |param1=<path number>|param1_desc={{path number}} | ||
|param2=< | |param2=<xs>|param2_desc=X position of the start of the path. | ||
|param3=< | |param3=<ys>|param3_desc=Y position of the start of the path. | ||
|param4=< | |param4=<zs>|param4_desc=Z position of the start of the path. | ||
}} | }} | ||
===Example=== | ===Example=== | ||
:CREATE_PATH | :CREATE_PATH 1, 10, 20, 50 | ||
:For an example macro see [[Modify_op_path2]] | :For an example macro see [[Modify_op_path2]] | ||
[[Category:Operations]] | [[Category:Operations]] |
Latest revision as of 00:14, 14 January 2011
Command
- CREATE_PATH <path number>, <xs>, <ys>, <zs>
- Create a numbered macro path. This path must have been defined by the DEFINE_PATH_LIST command.
Parameters
- <path number>
- Path number (1 to 100).
- <xs>
- X position of the start of the path.
- <ys>
- Y position of the start of the path.
- <zs>
- Z position of the start of the path.
Example
- CREATE_PATH 1, 10, 20, 50
- For an example macro see Modify_op_path2