~ubuntu-branches/debian/jessie/libccd/jessie

« back to all changes in this revision

Viewing changes to src/testsuites/common.h

  • Committer: Package Import Robot
  • Author(s): Jose Luis Rivero
  • Date: 2014-03-24 16:51:48 UTC
  • Revision ID: package-import@ubuntu.com-20140324165148-mfno979f58rv322z
Tags: upstream-2.0
ImportĀ upstreamĀ versionĀ 2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef TEST_COMMON
 
2
#define TEST_COMMON
 
3
 
 
4
#include <stdio.h>
 
5
#include <ccd/vec3.h>
 
6
 
 
7
void svtObj(void *o, FILE *out, const char *color, const char *name);
 
8
void svtObjPen(void *o1, void *o2,
 
9
               FILE *out, const char *name,
 
10
               ccd_real_t depth, const ccd_vec3_t *dir, const ccd_vec3_t *pos);
 
11
void recPen(ccd_real_t depth, const ccd_vec3_t *dir, const ccd_vec3_t *pos,
 
12
            FILE *out, const char *note);
 
13
 
 
14
#endif