WO113
- Last UpdatedMay 13, 2023
- 1 minute read
Name
WO113 - AutoSeq 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 wo113( 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 1 |
||
|
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 TBLSEQUENCEPLUGIN_API #define TBSEQUENCEPLUGIN_API
#endif
/*
*************************************************************
Main procedure - wo113
*************************************************************
*/
#ifdef WIN32 TBSEQUENCEPLUGIN_API
#endif
void wo113( const int /* PartNo */,
const int /* ContourNo */, const int /* SegPart */, const int /* SegType */, const double /* AmpU */, const double /* AmpV */, const double /* EndU */, const double /* EndV */)
{
}
}