owlGetModel

Returns a handle to the model within the Geometry Kernel. Note: the STEP Engine uses one or more models within the Geometry Kernel to generate design trees within the Geometry Kernel. All Geometry Kernel calls can be called with the STEP model handle also, however most correct would be to get and use the Geometry Kernel handle.

Syntax

//
//   Strong typing definition
//
void            owlGetModel(
                        SdaiModel               model,
                        int64_t                 * owlModel
                    );


//
//   Weak typing definition
//
void    __declspec(dllexport) __stdcall   owlGetModel(
                                                                        int_t                   model,
                                                                        int64_t                 * owlModel
                                                                    );
    

Property model

Size: 32 bit / 4 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.

Property owlModel

Size: 32 bit / 4 byte (reference)
...