#include <wx/event.h>#include "vrmlparser.h"Go to the source code of this file.
Defines | |
| #define | PRECISION 0.0001 |
Functions | |
| int | cmp (const void *a, const void *b) |
| #define PRECISION 0.0001 |
| int cmp | ( | const void * | a, | |
| const void * | b | |||
| ) |
Definition at line 1169 of file vrmlparser.cpp.
01169 { 01170 std::pair<VECTOR3,size_t>* a1 = (std::pair<VECTOR3,size_t>*)a; 01171 std::pair<VECTOR3,size_t>* b1 = (std::pair<VECTOR3,size_t>*)b; 01172 return (int)(a1->first < b1->first); 01173 }
1.5.5