Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

vfoGRGeometry

vfoGRGeometry(
(pcell vfoSfPCellClass)
) 
=> t / nil

Description

Calls three generic functions in the following order: vfoSfInitialize(pcell), vfoSfDraw(pcell), and then vfoSfFinalize(pcell) for drawing the fluid Pcell geometry. NOTE: This is the top-level entry point to the vfo space-filling Pcell.

Arguments

pcell

The SKILL++ object of class, vfoSfPcellClass.

Value Returned

t

The fluid Pcell geometry is successfully drawn.

nil

The fluid Pcell geometry could not be drawn.

Example

; Override draw methods
(defmethod vfoGRGeometry ((pcell vfoGuardRing))
  (vfoSfInitialize pcell)
  (vfoSfDraw pcell)
  (vfoSfFinalize pcell)
 …)

Return to top
 ⠀
X