aboutsummaryrefslogtreecommitdiff
path: root/tool_src/BspLib/TriMapping.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
commitc068f22329d5cc722622a2183bbb22eef2093df7 (patch)
tree12d56c1aede67988a55e241364606bfbb4dba933 /tool_src/BspLib/TriMapping.cpp
downloadopenparsec-main.tar.xz
openparsec-main.zip
initial importHEADmain
Diffstat (limited to 'tool_src/BspLib/TriMapping.cpp')
-rw-r--r--tool_src/BspLib/TriMapping.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/tool_src/BspLib/TriMapping.cpp b/tool_src/BspLib/TriMapping.cpp
new file mode 100644
index 0000000..c2e2185
--- /dev/null
+++ b/tool_src/BspLib/TriMapping.cpp
@@ -0,0 +1,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
+
+//-----------------------------------------------------------------------------