removed an extra typename detected by gcc...
This commit is contained in:
parent
e74d22e0e5
commit
98d61f03a2
|
@ -337,9 +337,9 @@ void SegmentSegmentDistance(const vcg::Segment3<ScalarType> &s0,
|
||||||
*/
|
*/
|
||||||
template<class ScalarType>
|
template<class ScalarType>
|
||||||
void TrianglePointDistance(const vcg::Triangle3<ScalarType> &t,
|
void TrianglePointDistance(const vcg::Triangle3<ScalarType> &t,
|
||||||
const typename vcg::Point3<ScalarType> & q,
|
const typename vcg::Point3<ScalarType> & q,
|
||||||
typename ScalarType & dist,
|
ScalarType & dist,
|
||||||
typename vcg::Point3<ScalarType> & closest )
|
typename vcg::Point3<ScalarType> & closest )
|
||||||
{
|
{
|
||||||
typedef typename vcg::Point3<ScalarType> CoordType;
|
typedef typename vcg::Point3<ScalarType> CoordType;
|
||||||
|
|
||||||
|
@ -501,4 +501,4 @@ void TriangleTriangleDistance(const vcg::Triangle3<ScalarType> &t0,
|
||||||
|
|
||||||
}///end namespace vcg
|
}///end namespace vcg
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue