C++
int acreRegisterCallout( AcReCallout * imp );
File
scene.h
Description
This function registers an AcReCallout object for the function acreEntityToFaces(). A later call to acreEntityToFaces() will result in calls to certain member functions of the imp object. See the AcReCallout class documentation for more information.
You can pass a NULL pointer for imp to unregister a previously registered AcReCallout object, or to force acreEntityToFaces() to write the facet information to a temporary file.
Only one AcReCallout object can be registered. A later call to acreRegisterCallout() with another AcReCallout object will unregister any previously registered AcReCallout object.
Returns 1 if imp is not NULL, and returns 0 if imp is NULL.
Parameters
Parameters | Description |
---|---|
imp | Input pointer to pre-existing AcReCallout object |