| Description |
| Visits all the plies in the specified composite solid. |
| Synopsis |
| #include <ProComposite.h> |
| ProError | ProCompositePlyVisit | ( |
| ProSolid composite | |
| /*
(In) |
| The composite solid handle. |
| */ |
| ProModelitemVisitAction action | |
| /*
(In) |
| The visiting function. If it returns anything other than PRO_TK_NO_ERROR, visiting stops. |
| */ |
| ProModelitemFilterAction filter | |
| /*
(In) |
| The filter function. If NULL, all features in the specified solid are visited using the action function. |
| */ |
| ProAppData appdata | |
| /*
(In) |
| The application data passed to the filter and action functions. |
| */ |
| ) |
| Returns |
|
| PRO_TK_NO_ERROR | | The function successfully visited all the plies. |
| PRO_TK_E_NOT_FOUND | | Either no ply exist, or they were all filtered out by the filter function. |
| Other | | Any other value is the value returned by the action function (visiting stopped). |
|