Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 578 Bytes

File metadata and controls

44 lines (36 loc) · 578 Bytes

Locus

Description

Procedure Locus creates a 2D locus object at the specified coordinate location.

PROCEDURE Locus(pX,pY : REAL);
def vs.Locus(p):
    return None

Parameters

Name Type Description
p REAL Coordinate location of new locus.

Examples

==== VectorScript ====

PROCEDURE Example;
VAR
x, y :REAL;
BEGIN
HCenter(FSActLayer, x, y);
Locus(x, y);
END;
RUN(Example);

==== Python ====

x = 100
y = 0
vs.Locus (x, y)

Version

Availability: from All Versions

Category

  • Objects - 2D