- markup codingStyleGuide.org examples so they actually indent correctly - use 'Info<<' as per codingStyleGuide instead of 'Info <<'
16 lines
215 B
C
16 lines
215 B
C
|
|
// Not used. Let EnSight do the job.
|
|
|
|
int USERD_get_model_extents
|
|
(
|
|
float extents[6]
|
|
)
|
|
{
|
|
#ifdef ENSIGHTDEBUG
|
|
Info<< "Entering: USERD_get_model_extents" << endl
|
|
<< flush;
|
|
#endif
|
|
|
|
return Z_ERR;
|
|
}
|