Command: polynode

Syntax

{<entity> = } polynode "{"
    <pcommand>
    ....
"}"

Description

Create a polynode graphic entity. A polynode is a set of nodes (markers) with identical symbology.

Parameters

Switches

Notes

This command always creates a graphic entity. Duplicate consecutive points are ignored.

Examples

Create an unnamed three-point polynode entity with default marker symbology and height.

polynode { gc, e:1000, n:1000 }

Create a named polynode entity (the points are defined interactively).

entity my_nodes = polynode -col=red,-ms=mk_star,-mh=10 {
    pseries; # Command
}

Create a circle of nodes (with plus markerstyle).

numeric x = 1000
entity ring = polynode -ms=mk_plus,-mh=2 {
    circle -c=(50,0),-r=50,-ap=32; # 32 nodes will be created
}

See Also

Commands:

entity, gstructure, point

Identifiers:

def_fragment (numeric), def_marker_height (numeric), def_ms (markerstyle), def_rank (numeric)

Structures:

entity (polynode)