diff options
author | Marios Staikopoulos <marios@staik.net> | 2019-09-19 21:56:07 -0700 |
---|---|---|
committer | Marios Staikopoulos <marios@staik.net> | 2019-09-20 23:08:58 -0700 |
commit | 11e09e59d16e58ef370b11c727003749a78e53d5 (patch) | |
tree | 269cbe41b7793e114d7e4c7667b019f3475f3c11 /core/math/disjoint_set.cpp | |
parent | d81ddaf33ecddab1c83bc964b0bee4328b7f7b06 (diff) | |
download | redot-engine-11e09e59d16e58ef370b11c727003749a78e53d5.tar.gz |
GLTF2 Import Fixes - Skin(s) to Skeleton - Skin Support
Diffstat (limited to 'core/math/disjoint_set.cpp')
-rw-r--r-- | core/math/disjoint_set.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/core/math/disjoint_set.cpp b/core/math/disjoint_set.cpp new file mode 100644 index 0000000000..838939e1ba --- /dev/null +++ b/core/math/disjoint_set.cpp @@ -0,0 +1,31 @@ +/*************************************************************************/ +/* disjoint_set.h */ +/*************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* https://godotengine.org */ +/*************************************************************************/ +/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */ +/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */ +/* */ +/* Permission is hereby granted, free of charge, to any person obtaining */ +/* a copy of this software and associated documentation files (the */ +/* "Software"), to deal in the Software without restriction, including */ +/* without limitation the rights to use, copy, modify, merge, publish, */ +/* distribute, sublicense, and/or sell copies of the Software, and to */ +/* permit persons to whom the Software is furnished to do so, subject to */ +/* the following conditions: */ +/* */ +/* The above copyright notice and this permission notice shall be */ +/* included in all copies or substantial portions of the Software. */ +/* */ +/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ +/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ +/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ +/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ +/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ +/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ +/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/*************************************************************************/ + +#include "disjoint_set.h" |