WO107
- Last UpdatedDec 18, 2023
- 1 minute read
Name
WO107 - AutoSeq Interface routine - Add Cutout/Notch for Contour
Purpose
The procedure adds a cutout/notch for the current contour.
Declaration
void wo107( const int PlatePartNo, const int ContourNo,
const int CutoutNo, const int SegPartStart,
const double StartPoint[2], const int SegPartEnd, const double EndPoint[2]);
Input
Parameters:
PlatePartNo The identification number for the plate part
ContourNo The contour number
CutoutNo The cutout number
SegPartStart Segment part number for the cutout/notch start StartPoint Interval starting point
SegPartEnd Segment part number for the cutout/notch end EndPoint Interval ending point
EndPoint Interval ending point
Result
None.
/
/*
External declarations
*/
extern "C"
{
#if !defined TBLSEQUENCEPLUGIN_API #define TBSEQUENCEPLUGIN_API
#endif
/*
*********************************************************************
*****
*
Main procedure - wo107
*********************************************************************
*****
*/
#ifdef WIN32 TBSEQUENCEPLUGIN_API
#endif
void wo107( const int /* PlatePartNo */, const int /* ContourNo */,
const int /* CutoutNo */, const int /* SegPartStart */,
const double [2] /* StartPoint */, const int /* SegPartEnd */,
const double [2] /* EndPoint */)
{
}
}