CREATE PATH: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
No edit summary
Mikeo (talk | contribs)
No edit summary
 
Line 1: Line 1:
[[Operations:Operation_Tool-Path|{{Up}}]]
[[Operations:Operation_Tool-Path|{{Up}}]]


{{Command|syntax=CREATE_PATH <path number>, <xe>, <ye>, <ze>
{{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=<xe>|param2_desc={{xe}}
|param2=<xs>|param2_desc=X position of the start of the path.
|param3=<ye>|param3_desc={{ye}}
|param3=<ys>|param3_desc=Y position of the start of the path.
|param4=<ze>|param4_desc={{ze}}
|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

Up

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