Pointwise Plugin SDK
|
Functions | |
PWGM_HCONNECTOR | PwModCreateCon (PWGM_HGRIDMODEL model, PWP_UINT size) |
Creates a connector in a model. More... | |
PWGM_HBLOCK | PwModCreateStrBlock (PWGM_HGRIDMODEL model, const PWGM_STR_SIZE blkSize) |
Creates a structured block in a model. More... | |
PWGM_HDOMAIN | PwModCreateStrDomain (PWGM_HGRIDMODEL model, const PWGM_STR_SIZE domSize) |
Creates a structured domain in a model. More... | |
These functions are used to import structured grids.
PWGM_HCONNECTOR PwModCreateCon | ( | PWGM_HGRIDMODEL | model, |
PWP_UINT | size | ||
) |
Creates a connector in a model.
model | The grid model handle. |
size | Specifies the number of points in the connector. |
These snippets are from the GrdpTEST sample plugin included with the Plugin SDK.
The doCreateCon() function creates a connector and loads its vertices:
Definition at line 770 of file apiGridModel.cxx.
PWGM_HBLOCK PwModCreateStrBlock | ( | PWGM_HGRIDMODEL | model, |
const PWGM_STR_SIZE | blkSize | ||
) |
Creates a structured block in a model.
model | The grid model handle. |
blkSize | Specifies the ijk size of the structured block. The number of points is computed as (i * j * k). |
These snippets are from the GrdpTEST sample plugin included with the Plugin SDK.
The doCreateStrBlk() function creates a structured block and loads its vertices:
The doCreateStrBlk() helper functions:
Definition at line 1356 of file apiGridModel.cxx.
PWGM_HDOMAIN PwModCreateStrDomain | ( | PWGM_HGRIDMODEL | model, |
const PWGM_STR_SIZE | domSize | ||
) |
Creates a structured domain in a model.
model | The grid model handle. |
domSize | Specifies the ij size of the structured domain. The value of k is ignored. The number of points is computed as (i * j). |
These snippets are from the GrdpTEST sample plugin included with the Plugin SDK.
The doCreateStrDom() function creates a structured domain and loads its vertices:
The doCreateStrDom() helper functions:
Definition at line 1364 of file apiGridModel.cxx.