Category Graphics and model display, Object ProGraphics

Function ProGraphicsArcDraw


Description
Draws an arc on the screen.

NOTE:

All points are in logical screen coordinates.

Replacement in Object TOOLKIT: pfcDisplay::DrawArc2D
Synopsis
#include <ProGraphic.h>
ProErrorProGraphicsArcDraw(
ProPoint3d center
/* (In)
The center point of the arc
*/
double radius
/* (In)
The radius of the arc
*/
ProVector vector1
/* (In)
The starting point
*/
ProVector vector2
/* (In)
The endpoint
*/
)
Returns
PRO_TK_NO_ERRORThe function successfully drew the arc.
PRO_TK_BAD_INPUTSOne or more of the arguments are invalid.

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 )