Category Graphics and model display, Object ProGraphics

Function ProGraphicsPolylineDraw


Description
Draws a series of connected line segments (polylines) on the screen.

NOTES:

  • These points are in the coordinate system of the current object. For example, if the current object is a part, the points must be in the part's coordinate system. If the current object is an assembly, the points must be in the assembly's coordinate system.
  • The total number of points must be less than 200.
Replacement in Object TOOLKIT: pfcDisplay::DrawPolyline
Synopsis
#include <ProGraphic.h>
voidProGraphicsPolylineDraw(
ProPoint3d* point_arr
/* (In)
The 3-D points to connect with line segments.
*/
int num_points
/* (In)
The number of points in the points array.
*/
)
Returns
None

Manual References:

  1. Pro/DEVELOP to Creo Toolkit Function Mapping: Equivalent Pro/DEVELOP Functions
  2. User Interface: Basic Graphics: Displaying Graphics
  3. User Interface: Basic Graphics: Displaying Graphics

Sample Code References:

  1. pt_examples ( TestAnalysisCurve.c )
  2. pt_examples ( TestGraphics.c )
  3. pt_userguide ( UgModelCheck.c )
  4. pt_userguide ( UgXsecMassProps.c )