Public Methods | |
| void * | operator new (size_t s) |
| void | operator delete (void *p, size_t s) |
Public Attributes | |
| point< T > | p |
| point< T > | n |
| point2< T > | d |
|
||||||||||||||||
|
Definition at line 279 of file gunu_tesselate.cpp. References GULAPI, and gust::PoolFree().
00280 {
00281 if( p != 0 ) gust::PoolFree( p, s );
00282 }
|
|
||||||||||
|
Definition at line 272 of file gunu_tesselate.cpp. References gust::PoolAlloc().
00273 {
00274 size_t dummy;
00275 void *p = gust::PoolAlloc( s, &dummy );
00276 if( p == NULL ) throw gul::PoolAllocError();
00277 return(p);
00278 }
|
|
|||||
|
Definition at line 270 of file gunu_tesselate.cpp. |
|
|||||
|
Definition at line 269 of file gunu_tesselate.cpp. |
|
|||||
|
Definition at line 268 of file gunu_tesselate.cpp. |
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001