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
Value Returned
Example
; Override draw methods
(defmethod vfoGRGeometry ((pcell vfoGuardRing))
…
(vfoSfInitialize pcell)
(vfoSfDraw pcell)
(vfoSfFinalize pcell)
…)
Return to top