diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /tool_src/BspLib/TriMapping.cpp | |
| download | openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.tar.xz openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.zip | |
Diffstat (limited to 'tool_src/BspLib/TriMapping.cpp')
| -rw-r--r-- | tool_src/BspLib/TriMapping.cpp | 26 |
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 + +//----------------------------------------------------------------------------- |
