The formula prints the minimum distance (vertical or horizontal / against or along flute direction) between the creasing tools on inliner machines.
The formulas count the lines according to:
IMPORTANT: The formula works only for files saved to your Project Organizer database.
To print | In drawing | Use |
---|---|---|
Min Tool Distance | 1up, layout | $OneUpN.MinToolGap(StyleName, ProductionDirection; Units)$ |
With Semicolon | With Comma |
---|---|
$Layout1.Length(Cutting; m; yes); n2$ | $Layout1.Length(Cutting, m, yes), n2$ |
Minimum tool distance | Units | Use | Result |
---|---|---|---|
Horizontal | Default | $OneUp1.MinToolGap("Wheel Creasing"; 90)$ | 193.00 |
Horizontal | cm | $OneUp1.MinToolGap("Wheel Creasing"; 90; cm)$ | 19.30 cm |
Vertical | Default | $OneUp1.MinToolGap("Wheel Creasing"; 0)$ | 43.00 |
When you need to extract a minimum tool distance against or along the flute direction, use the fd() function as argument for ProductionDirection. It returns the direction of the flute.
In the example that follows, identical formulas return different results because they take into account the direction of the flute.
Flute Direction | Use | Flute along y | Flute along x |
---|---|---|---|
Against | $OneUp1.MinToolGap("Wheel Creasing", fd())$ | 193.00 | 43.00 |
Along | $OneUp1.MinToolGap("Wheel Creasing", fd()+90)$ | 43.00 | 193.00 |