Class Reference cellList

A list element for cells. More...

Member

cellList* nextCell
cell* thisCell

Detailed Description

graph LR la(layout)--drawing-->dr(drawingField) dr--firstCell-->cl(cellList) cl==thisCell==>ce(cell) cl==nextCell==>cl click ce "/layoutscript/api/cell" click cl "/layoutscript/api/celllist" click el "/layoutscript/api/elementlist" click la "/layoutscript/api/layout" click dr "/layoutscript/api/drawingfield" classDef thisClas fill:#eaf5fc,stroke:#3c7faa,stroke-width:4px; classDef clas fill:#eaf5fc,stroke:#3c7faa,stroke-width:1px; class cl thisClas class la,dr,ce clas

Cells are stored in a linked list. This class is the list element for cells. It contains exactly two pointer. One the cell and one to the next list element. The list of all cells can be accessed from the drawingField class with layout->drawing->firstCell.

Member Function Documentation


cellList* cellList::nextCell

This is a pointer to a list element for a cell.


cell* cellList::thisCell

This is a point to a cell.