OpenGL Volumizer 2.7 Reference Pages


NAME
vzPolyGeometry - Polygonal geometry associated with a shape node.

INHERITS FROM
vzGeometry

HEADER FILE
#include <Volumizer2/PolyGeometry.h>

PUBLIC METHOD SUMMARY
vzPolyGeometry (  );
virtual void draw ( double geometryROI[6]) const = 0;

PROTECTED METHOD SUMMARY
virtual ~vzPolyGeometry (  );

CLASS DESCRIPTION
The vzPolyGeometry class represents any polygonal geometry attached to a vzShape node. The class provides an pure virtual method draw() which is invoked by the render action while rendering the shape node.

METHOD DESCRIPTIONS

   vzPolyGeometry()
vzPolyGeometry (  );

Constructor for polygonal geometry.

   ~vzPolyGeometry()
virtual ~vzPolyGeometry (  );

Destructor for polygonal geometry.

   draw()
virtual void draw ( double geometryROI[6]) const = 0;

Pure virtual method which is invoked by the render action to draw the polygonal geometry. The argument geometryROI provides the geometric region-of-interest for the polygonal geometry.

SEE ALSO
vzGeometry, vzShape

Back to Index