Home
last modified time | relevance | path

Searched refs:disconnect_points (Results 1 – 11 of 11) sorted by relevance

/dports/devel/godot/godot-3.2.3-stable/main/tests/
H A Dtest_astar.cpp110 a.disconnect_points(1, 2, true); in test_add_remove()
114 a.disconnect_points(4, 1, false); in test_add_remove()
118 a.disconnect_points(4, 1, true); in test_add_remove()
130 a.disconnect_points(2, 3, false); in test_add_remove()
138 a.disconnect_points(3, 4, false); in test_add_remove()
162 a.disconnect_points(1, 4, false); in test_add_remove()
163 a.disconnect_points(4, 3, false); in test_add_remove()
164 a.disconnect_points(3, 4, false); in test_add_remove()
183 a.disconnect_points(u, v, false); in test_add_remove()
202 a.disconnect_points(u, v, false); in test_add_remove()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/main/tests/
H A Dtest_astar.cpp110 a.disconnect_points(1, 2, true); in test_add_remove()
114 a.disconnect_points(4, 1, false); in test_add_remove()
118 a.disconnect_points(4, 1, true); in test_add_remove()
130 a.disconnect_points(2, 3, false); in test_add_remove()
138 a.disconnect_points(3, 4, false); in test_add_remove()
162 a.disconnect_points(1, 4, false); in test_add_remove()
163 a.disconnect_points(4, 3, false); in test_add_remove()
164 a.disconnect_points(3, 4, false); in test_add_remove()
183 a.disconnect_points(u, v, false); in test_add_remove()
202 a.disconnect_points(u, v, false); in test_add_remove()
[all …]
/dports/devel/godot/godot-3.2.3-stable/core/math/
H A Da_star.h148 void disconnect_points(int p_id, int p_with_id, bool bidirectional = true);
195 void disconnect_points(int p_id, int p_with_id);
H A Da_star.cpp183 void AStar::disconnect_points(int p_id, int p_with_id, bool bidirectional) { in disconnect_points() function in AStar
569 …ETHOD("disconnect_points", "id", "to_id", "bidirectional"), &AStar::disconnect_points, DEFVAL(true… in _bind_methods()
651 void AStar2D::disconnect_points(int p_id, int p_with_id) { in disconnect_points() function in AStar2D
652 astar.disconnect_points(p_id, p_with_id); in disconnect_points()
892 ClassDB::bind_method(D_METHOD("disconnect_points", "id", "to_id"), &AStar2D::disconnect_points); in _bind_methods()
/dports/devel/godot-tools/godot-3.2.3-stable/core/math/
H A Da_star.h148 void disconnect_points(int p_id, int p_with_id, bool bidirectional = true);
195 void disconnect_points(int p_id, int p_with_id);
H A Da_star.cpp183 void AStar::disconnect_points(int p_id, int p_with_id, bool bidirectional) { in disconnect_points() function in AStar
569 …ETHOD("disconnect_points", "id", "to_id", "bidirectional"), &AStar::disconnect_points, DEFVAL(true… in _bind_methods()
651 void AStar2D::disconnect_points(int p_id, int p_with_id) { in disconnect_points() function in AStar2D
652 astar.disconnect_points(p_id, p_with_id); in disconnect_points()
892 ClassDB::bind_method(D_METHOD("disconnect_points", "id", "to_id"), &AStar2D::disconnect_points); in _bind_methods()
/dports/devel/godot2-tools/godot-2.1.6-stable/core/math/
H A Da_star.h110 void disconnect_points(int p_id, int p_with_id);
H A Da_star.cpp114 void AStar::disconnect_points(int p_id, int p_with_id) { in disconnect_points() function in AStar
412 ObjectTypeDB::bind_method(_MD("disconnect_points", "id", "to_id"), &AStar::disconnect_points); in _bind_methods()
/dports/devel/godot2/godot-2.1.6-stable/core/math/
H A Da_star.h110 void disconnect_points(int p_id, int p_with_id);
H A Da_star.cpp114 void AStar::disconnect_points(int p_id, int p_with_id) { in disconnect_points() function in AStar
412 ObjectTypeDB::bind_method(_MD("disconnect_points", "id", "to_id"), &AStar::disconnect_points); in _bind_methods()
/dports/games/tanks-of-freedom/Tanks-of-Freedom-0.7.0-beta/scripts/ai/
H A Da_star.gd130 astar.disconnect_points(tile_id, id)