Adds a cardinal spline to the shape.

syntaxSyntax:
DlxFigure.AddCurve(vertices)

Parameters

Parameter Description
vertices An array of DlxPoint objects that specify the coordinates that the cardinal spline passes through.

Return Value

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

Remarks

A segment is defined as a curve that connects two consecutive points in the cardinal spline. The ending point of each segment is the starting point for the next.

Example

  Copy codeCopy code
var prj = DlxApp.GetJob().GetProject("Example Sch");
if (!prj.IsValid())
  prj = DlxApp.GetJob().NewProject("Example Sch");
var doc = prj.GetDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
if (!doc.IsValid())
{
  doc = prj.NewDocument("Examples Sch", DlxApp.DOCTYPE_SCHEMATIC);
  doc.SetPageFormat("A4", true);
}
if (doc.IsValid() && doc.Activate())
{
  var page = doc.GetActivePage();
  if (page.IsValid())
  {
    var layer = page.GetLayerFromType(DlxApp.LAYERTYPE_DRAWING);
    if (layer.IsValid())
    {
      // draw shape
      layer.DrawShape("V90,110,0;V110,130,0;V130,110,0;V90,110,-120;");
      
      // draw shape
      var andShape = layer.DrawShape();
      var figure = andShape.GetFigure();
      figure.BeginShape();
      figure.AddPoint(new DlxPoint(95,153.75));
      figure.AddPoint(new DlxPoint(101.25,153.75));
      figure.AddPoint(new DlxPoint(101.25,146.25), -180);
      figure.AddPoint(new DlxPoint(95,146.25));
      figure.EndShape(true);      
    }
  }
}

See also