Builds the J-Lead.

syntaxSyntax:
DlxLead.JLead(style, length, height, width, topWidth, tickness, footCenter, baseHeight)

Parameters

Parameter Description
style A Dlx3DStyle object or the index of the style. There are 10 styles available with indexes from 0 to 9.

Return Value

If the operation ends correctly it returns true otherwise it returns false.

Example

  Copy codeCopy code
function OnBuild3DModel()
{
  var ctx = FWiz.Get3DModelCtx();
  var style = FWiz.Get3DStyle(0);
  style.SetStyle("silver");

  var pin = new DlxLead();
  pin.JLead(style, 0.6, 1.2, 0.3, 0.5, 0.2, 0.4, 0.4);
  ctx.Add(pin);
}

See also