UL_CIRCLE

Data members

   
layer int
radius int
width int
x, y int (center point)

See also UL_BOARD, UL_FOOTPRINT, UL_SHEET, UL_SYMBOL

Example

board(B) {
  B.circles(C) {
    printf("Circle: (%f %f), r=%d, w=%d\n",
           u2mm(C.x), u2mm(C.y), u2mm(C.radius), u2mm(C.width));
    }
  }