UL_JUNCTION

Datenelemente

diameter int
x, y Ganzzahl (Mittelpunkt)

Siehe auch UL_SEGMENT.

Beispiel

schematic(SCH) {
  SCH.sheets(SH) {
    SH.nets(N) {
      N.segments(SEG) {
        SEG.junctions(J) {
          printf("Junction: (%f %f)\n", u2mm(J.x), u2mm(J.y));
          }
        }
      }
    }
  }