aboutsummaryrefslogtreecommitdiff
path: root/tool_src/BspLib/TriMapping.cpp
blob: c2e21854da1427782e82ff322d5687ec19d3c762 (plain)
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
//-----------------------------------------------------------------------------
//	BSPLIB MODULE: TriMapping.cpp
//
//  Copyright (c) 1997 by Markus Hadwiger
//  All Rights Reserved.
//-----------------------------------------------------------------------------

// bsplib headers
#include "TriMapping.h"


BSPLIB_NAMESPACE_BEGIN


// invalid index for mapping vertex -------------------------------------------
//
void TriMapping::Error() const
{
	ErrorMessage( "\n***ERROR*** Invalid index in BspLib::TriMapping." );
	HandleCriticalError();
}


BSPLIB_NAMESPACE_END

//-----------------------------------------------------------------------------