WO008
- Last UpdatedMay 12, 2023
- 1 minute read
Name
WO008 – AutoNest Interface routine - Add Segment Part for Plate Part
Purpose
The procedure adds one segment part for a plate part contour. The first segment part consists only of the starting point.
Each successive segment part contains the amplitude vector and the ending point. 2 consecutive segment parts constitutes one segment.
Declaration
void wo008( const int PartNo,
const int ContourNo, const int SegPart, const int SegType, const double AmpU, const double AmpV, const double EndU, const double EndV);
Input
Parameters:
|
PartNo |
The identification number for the plate part |
||
|
ContourNo |
The plate part contour number, starting from 1 |
||
|
SegPart |
The segment part number, starting from 0 |
||
|
SegType |
The segment part type: |
||
|
0 |
= |
The starting point |
|
|
1 |
= |
Line |
|
|
2 |
= |
Arc |
|
|
AmpU |
The amplitude vector AmpV |
||
|
EndU |
The ending point EndV |
||
Result
None.
/
/*
External declarations
*/
extern "C"
{
#if !defined TBLAYOUTPLUGIN_API #define TBLAYOUTPLUGIN_API
#endif
/*
**********************************************************************
*
Main procedure - wo008
**********************************************************************
*/
#ifdef WIN32 TBLAYOUTPLUGIN_API
#endif
void wo008( const int /* PartNo */,
const int /* ContourNo */, const int /* SegPart */, const int /* SegType */, const double /* AmpU */, const double /* AmpV */, const double /* EndU */, const double /* EndV */)
{
}
}