Builds through-hole lead.
Syntax: |
DlxLead.Zeta(style, width, height, tickness, bottomFold,
topFold, length,
arrowfactor=1) |
Parameters
Parameter |
Description |
style |
A Dlx3DStyle object or the index of the style. There are 10 styles available with indexes from 0 to 9. |
arrowfactor |
Value of the tip angle indicated with a value from 0 to 1. Enter 0 for a flat terminal. |
Return Value
If the operation ends correctly it returns true otherwise it returns false.
Example
|
Copy code
|
function OnBuild3DModel()
{
var ctx = FWiz.Get3DModelCtx();
var style = FWiz.Get3DStyle(0);
style.SetStyle("silver");
var pin = new DlxLead();
pin.Zeta(style, 0.8, 8.6, 0.5, 3.7, 1.6, 6);
ctx.Add(pin);
}
|
See also