WO024
- Last UpdatedMay 12, 2023
- 1 minute read
Name
WO024 - AutoNest Interface routine - Add Bevel Interval for Contour
Purpose
The procedure adds a bevel interval for the current contour.
Declaration
void wo024( const int PlatePartNo,
const int ContourNo,
const int BevelIntervalNo, const int SegPartStart, const double StartPoint[2], const int SegPartEnd,
const double EndPoint[2], const double BevelCode);
Input
Parameters
|
PlatePartNo |
The identification number for the plate part |
|
ContourNo |
The contour number |
|
BevelIntervalNo |
The bevel interval number |
|
SegPartStart |
Segment part number for the bevel interval start |
|
StartPoint |
Interval starting point |
|
SegPartEnd |
Segment part number for the bevel interval end |
|
EndPoint |
Interval ending point |
|
BevelCode |
The bevel code (< 0 indicates other side) |
Result
None.
/
/*
External declarations
*/
extern "C"
{
#if !defined TBLAYOUTPLUGIN_API #define TBLAYOUTPLUGIN_API
#endif
/*
**********************************************************************
Main procedure - wo024
**********************************************************************
*/
#ifdef WIN32 TBLAYOUTPLUGIN_API
#endif
void wo024( const int /* PlatePartNo */,
const int /* ContourNo */,
const int /* BevelIntervalNo */, const int /* SegPartStart */, const double [2] /* StartPoint */, const int /* SegPartEnd */,
const double [2] /* EndPoint */, const double /* BevelCode */)
{
}
}