Difference between revisions of "GET OP FEAT START"
From Macros Wiki
Line 2: | Line 2: | ||
{{Command|syntax=GET_OP_FEAT_START <op number>, <feature num>, <xs>, <ys>, <nowiki>[<zs>]</nowiki> | {{Command|syntax=GET_OP_FEAT_START <op number>, <feature num>, <xs>, <ys>, <nowiki>[<zs>]</nowiki> | ||
− | |description=: | + | |description=:Get the start of a feature in an operation's toolpath. |
|param1=<op number>|param1_desc={{op number}} | |param1=<op number>|param1_desc={{op number}} | ||
− | |param2=<feature | + | |param2=<feature number>|param2_desc={{path_feature num}} |
− | |param3=<xs>|param3_desc={{ | + | |param3=<xs>|param3_desc={{get feat xs}} |
− | |param4=<ys>|param4_desc= {{ | + | |param4=<ys>|param4_desc={{get feat ys}} |
− | |param5= | + | |param5=<zs>|param5_desc={{get feat zs}} |
+ | |||
}} | }} | ||
===Example=== | ===Example=== | ||
− | :GET_OP_FEAT_START | + | :GET_OP_FEAT_START 1, 15, xs, ys, zs |
:For an example macro see [[Modify_op_path2]] | :For an example macro see [[Modify_op_path2]] | ||
[[Category:Operations]] | [[Category:Operations]] |
Latest revision as of 11:49, 14 January 2011
Command
- GET_OP_FEAT_START <op number>, <feature num>, <xs>, <ys>, [<zs>]
- Get the start of a feature in an operation's toolpath.
Parameters
- <op number>
- Operation number.
- <feature number>
- Feature number. 1 for the first feature, 2 for the second etc.
- <xs>
- The name of a numeric variable to set to the X position of the feature start
- <ys>
- The name of a numeric variable to set to the Y position of the feature start
- <zs>
- The name of a numeric variable to set to the Z position of the feature start
Example
- GET_OP_FEAT_START 1, 15, xs, ys, zs
- For an example macro see Modify_op_path2