-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlcsUnitTest.h
31 lines (24 loc) · 917 Bytes
/
lcsUnitTest.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**********************************************
File : lcsUnitTest.h
Author : Mingcheng Chen
Last Update : June 3rd, 2012
***********************************************/
#ifndef __LCS_UNIT_TEST_H
#define __LCS_UNIT_TEST_H
#include "lcsGeometry.h"
namespace lcs {
void UnitTestForTetBlkIntersection(lcs::TetrahedralGrid *grid, double blockSize,
double globalMinX, double globalMinY, double globalMinZ,
int numOfBlocksInY, int numOfBlocksInZ,
int *queryTetrahedron, int *queryBlock,
char *queryResults,
int numOfQueries,
double epsilon);
void UnitTestForInitialCellLocations(lcs::TetrahedralGrid *grid,
int xRes, int yRes, int zRes,
double minX, double minY, double minZ,
double dx, double dy, double dz,
int *initialCellLocations,
double epsilon);
}
#endif