WO115
- Last UpdatedMay 13, 2023
- 2 minute read
Name
WO115 - AutoSeq Interface routine - Add Bridge/Gap for Contour
Purpose
The procedure adds a bridge/gap for the current contour.
Declaration
void wo115( const int PlatePartNo,
const int ContourNo, const int SegPartNo1, const int SegPartNo2, const double Pos1[2], const double Pos2[2], const int BridgeNo, const int BridgeType,
const double BridgeWidth, const int ConnPartNo, const int ConnContourNo, const int ConnSegPartNo1, const int ConnSegPartNo2, const double ConnPos1[2], const double ConnPos2[2]);
Input
Parameters:
|
PlatePartNo |
The identification number for the plate part |
||
|
ContourNo |
The contour number |
||
|
SegPartNo1 |
Segment part numbers for the bridge/gap |
||
|
SegPartNo2 |
|||
|
Pos1 |
The end point of one of the bridge lines (start of gap) |
||
|
Pos2 |
The end point of the other bridge line (end of gap) |
||
|
BridgeNo |
The bridge number |
||
|
BridgeType |
The bridge type: |
||
|
= |
0 |
Gap |
|
|
= |
1 |
Double centered |
|
|
= |
2 |
Single centered |
|
|
= |
3 |
Double asymmetric |
|
|
= |
4 |
Single asymmetric |
|
|
= |
5 |
Cross centered |
|
|
= |
6 |
Cross asymmetric |
|
|
= |
7 |
As 3 but inside a cutout |
|
|
= |
8 |
As 0, is used as start for a cut free geometry |
|
|
For negative bridges, the type is negative |
|||
|
BridgeWidth |
The bridge width |
||
|
ConnPartNo |
The identification number for the connecting plate part (bridge type 1-7 only) |
||
|
ConnContourNo |
The contour number for the connecting contour (bridge type 1-6 only) |
||
|
ConnSegPartNo1 |
The segment part numbers for the connecting contour (bridge type 1-6 only) |
||
|
ConnSegPartNo2 |
|||
|
ConnPos1 |
The end point of one of the bridge lines for the connecting part |
||
|
ConnPos2 |
The end point of the other bridge line for the connecting part |
||
Rseult
None.
- */
/*
External declarations
*/
extern "C"
{
#if !defined TBLSEQUENCEPLUGIN_API #define TBSEQUENCEPLUGIN_API
#endif
/*
*************************************************************
*
Main procedure - wo115
*************************************************************
*/
#ifdef WIN32 TBSEQUENCEPLUGIN_API
#endif
void wo115( const int /* PlatePartNo */,
const int /* ContourNo */, const int /* SegPartNo1 */, const int /* SegPartNo2 */, const double [2] /* Pos1 */, const double [2] /* Pos2 */, const int /* BridgeNo */, const int /* BridgeType */,
const double /* BridgeWidth */, const int /* ConnPartNo */, const int /* ConnContourNo */, const int /* ConnSegPartNo1 */, const int /* ConnSegPartNo2 */, const double [2] /* ConnPos1 */, const double [2] /* ConnPos2 */)
{
}
}