GET OP FEAT START: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
No edit summary
Mikeo (talk | contribs)
No edit summary
 
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 num>|param2_desc={{feature num}}
|param2=<feature number>|param2_desc={{path_feature num}}
|param3=<xs>|param3_desc={{getxs}}
|param3=<xs>|param3_desc={{get feat xs}}
|param4=<ys>|param4_desc= {{getys}}
|param4=<ys>|param4_desc={{get feat ys}}
|param5=<nowiki>[<zs>]</nowiki>|param5_desc= {{getzs}}
|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 16:49, 14 January 2011

Up

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