Subversion Repositories gelsvn

Rev

Rev 595 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 595 Rev 630
1
/* ----------------------------------------------------------------------- *
1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
5
 * ----------------------------------------------------------------------- */
6
 
6
 
7
/**
7
/**
8
 * @file verification.h
8
 * @file verification.h
9
 * @brief Test implementation of distance to triangle. Only for reference.
9
 * @brief Test implementation of distance to triangle. Only for reference.
10
 */
10
 */
11
#ifndef __GEOMETRY_VERIFICATION_H
11
#ifndef __GEOMETRY_VERIFICATION_H
12
#define __GEOMETRY_VERIFICATION_H
12
#define __GEOMETRY_VERIFICATION_H
13
 
13
 
14
#include "Triangle.h"
14
#include "Triangle.h"
15
 
15
 
16
namespace Geometry
16
namespace Geometry
17
{
17
{
18
  float SqrDistance (const CGLA::Vec3f& rkPoint,const Triangle& rkTri);
18
  float SqrDistance (const CGLA::Vec3f& rkPoint,const Triangle& rkTri);
19
}
19
}
20
#endif
20
#endif
21
 
21