mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
12 lines
255 B
C
12 lines
255 B
C
|
#include <assert.h>
|
||
|
#include <ccd/config.h>
|
||
|
#include <ccd/vec3.h>
|
||
|
int main() {
|
||
|
#ifndef CCD_DOUBLE
|
||
|
assert(false);
|
||
|
#endif
|
||
|
ccdVec3PointSegmentDist2(
|
||
|
ccd_vec3_origin, ccd_vec3_origin,
|
||
|
ccd_vec3_origin, NULL);
|
||
|
return 0;
|
||
|
}
|