00001 #include <clu.h> 00002 00003 GLvoid cluDeleteQuaternion(CLUquaternion* quaternion) 00004 { 00005 free(quaternion); 00006 } 00007 00008 GLvoid cluDeletePlane(CLUplane* plane) 00009 { 00010 free(plane); 00011 } 00012 00013 GLvoid cluDeleteSphere(CLUsphere* sphere) 00014 { 00015 free(sphere); 00016 } 00017 00018 GLvoid cluDeleteCone(CLUcone* cone) 00019 { 00020 free(cone); 00021 } 00022 00023 GLvoid cluDeleteRay(CLUray* ray) 00024 { 00025 free(ray); 00026 } 00027 00028 GLvoid cluDeleteAlignedBox(CLUalignedbox* box) 00029 { 00030 free(box); 00031 }