Adds values to the x and y members of DlxPoint and returns the result. The DlxPoint object is not modified.
Syntax: |
---|
DlxPoint.Offset(point) DlxPoint.Offset(dx, dy) |
Parameters
Parameter | Description |
---|---|
point | A DlxPoint object with the amount to offset the x and y members. |
dx | Specifies the amount to offset the x member |
dy | Specifies the amount to offset the y member |
Return Value
A DlxPoint object with the coordinates of the point.
Example
Copy 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", false);
}
if (doc.IsValid() && doc.Activate())
{
var page = doc.GetActivePage();
if (page.IsValid())
{
var layer = page.GetLayerFromType(DlxApp.LAYERTYPE_DRAWING);
if (layer.IsValid())
{
var size = 10;
var sides = 6;
var index = 0;
var step = Math.PI * 2 / sides;
var center = new DlxPoint(80, 90);
var vertices = new Array();
for (var angle = 0; angle < Math.PI*2; angle += step)
{
vertices[index++] = center.Offset(new DlxPoint(size * Math.cos(angle), size * Math.sin(angle)));
}
vertices[index++] = vertices[0];
layer.DrawPolygon(vertices);
}
}
}
|