variable_assignment
variable_assignment
¶
Macro variable definition token.
MacroVariableAssignment
¶
Bases: MacroStatementToken
4.5.4.3 Definition of New Variable.¶
New variables can be defined by an assign statement as follows: $4=$1x1.25-$3. The
right-hand side is any arithmetic expression as in the previous section.
The variable values are determined as follows:
$1,$2, ...,$ntake the values of the n parameters of the calling AD command.- New variables get their value from their defining expression.
- The undefined variables are 0.
- Macro variables cannot be redefined.
Example #1¶
The AD command contains four parameters which define the first four macro variables:
The variable $5 is defined in the macro body and becomes
Example #2¶
Example #3¶
See section 4.5.4.3 of The Gerber Layer Format Specification
Source code in src/pygerber/gerberx3/tokenizer/tokens/macro/statements/variable_assignment.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
new
classmethod
¶
Create instance of this class.
Created to be used as callback in ParserElement.set_parse_action().
Source code in src/pygerber/gerberx3/tokenizer/tokens/macro/statements/variable_assignment.py
evaluate
¶
Evaluate macro expression.
Source code in src/pygerber/gerberx3/tokenizer/tokens/macro/statements/variable_assignment.py
parser2_visit_token
¶
Perform actions on the context implicated by this token.
Source code in src/pygerber/gerberx3/tokenizer/tokens/macro/statements/variable_assignment.py
get_gerber_code
¶
Get gerber code represented by this token.