Home
last modified time | relevance | path

Searched refs:ConvexPolygonShape (Results 1 – 25 of 31) sorted by relevance

12

/dports/devel/godot-tools/godot-3.2.3-stable/scene/resources/
H A Dconvex_polygon_shape.cpp35 Vector<Vector3> ConvexPolygonShape::get_debug_mesh_lines() { in get_debug_mesh_lines()
58 void ConvexPolygonShape::_update_shape() { in _update_shape()
64 void ConvexPolygonShape::set_points(const PoolVector<Vector3> &p_points) { in set_points()
71 PoolVector<Vector3> ConvexPolygonShape::get_points() const { in get_points()
76 void ConvexPolygonShape::_bind_methods() { in _bind_methods()
78 ClassDB::bind_method(D_METHOD("set_points", "points"), &ConvexPolygonShape::set_points); in _bind_methods()
79 ClassDB::bind_method(D_METHOD("get_points"), &ConvexPolygonShape::get_points); in _bind_methods()
84 ConvexPolygonShape::ConvexPolygonShape() : in ConvexPolygonShape() function in ConvexPolygonShape
H A Dconvex_polygon_shape.h36 class ConvexPolygonShape : public Shape {
38 GDCLASS(ConvexPolygonShape, Shape);
52 ConvexPolygonShape();
H A Dmesh.cpp238 ERR_FAIL_COND_V(a.empty(), Ref<ConvexPolygonShape>()); in create_convex_shape()
243 Ref<ConvexPolygonShape> shape = memnew(ConvexPolygonShape); in create_convex_shape()
590 Ref<ConvexPolygonShape> shape; in convex_decompose()
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/resources/
H A Dconvex_polygon_shape.cpp34 Vector<Vector3> ConvexPolygonShape::_gen_debug_mesh_lines() { in _gen_debug_mesh_lines()
58 void ConvexPolygonShape::_update_shape() { in _update_shape()
64 void ConvexPolygonShape::set_points(const DVector<Vector3> &p_points) { in set_points()
71 DVector<Vector3> ConvexPolygonShape::get_points() const { in get_points()
76 void ConvexPolygonShape::_bind_methods() { in _bind_methods()
78 ObjectTypeDB::bind_method(_MD("set_points", "points"), &ConvexPolygonShape::set_points); in _bind_methods()
79 ObjectTypeDB::bind_method(_MD("get_points"), &ConvexPolygonShape::get_points); in _bind_methods()
84 ConvexPolygonShape::ConvexPolygonShape() : in ConvexPolygonShape() function in ConvexPolygonShape
H A Dconvex_polygon_shape.h35 class ConvexPolygonShape : public Shape {
37 OBJ_TYPE(ConvexPolygonShape, Shape);
51 ConvexPolygonShape();
H A Dmesh.cpp557 Ref<ConvexPolygonShape> shape = memnew(ConvexPolygonShape); in create_convex_shape()
/dports/devel/godot2/godot-2.1.6-stable/scene/resources/
H A Dconvex_polygon_shape.cpp34 Vector<Vector3> ConvexPolygonShape::_gen_debug_mesh_lines() { in _gen_debug_mesh_lines()
58 void ConvexPolygonShape::_update_shape() { in _update_shape()
64 void ConvexPolygonShape::set_points(const DVector<Vector3> &p_points) { in set_points()
71 DVector<Vector3> ConvexPolygonShape::get_points() const { in get_points()
76 void ConvexPolygonShape::_bind_methods() { in _bind_methods()
78 ObjectTypeDB::bind_method(_MD("set_points", "points"), &ConvexPolygonShape::set_points); in _bind_methods()
79 ObjectTypeDB::bind_method(_MD("get_points"), &ConvexPolygonShape::get_points); in _bind_methods()
84 ConvexPolygonShape::ConvexPolygonShape() : in ConvexPolygonShape() function in ConvexPolygonShape
H A Dconvex_polygon_shape.h35 class ConvexPolygonShape : public Shape {
37 OBJ_TYPE(ConvexPolygonShape, Shape);
51 ConvexPolygonShape();
H A Dmesh.cpp557 Ref<ConvexPolygonShape> shape = memnew(ConvexPolygonShape); in create_convex_shape()
/dports/devel/godot/godot-3.2.3-stable/scene/resources/
H A Dconvex_polygon_shape.cpp35 Vector<Vector3> ConvexPolygonShape::get_debug_mesh_lines() { in get_debug_mesh_lines()
58 void ConvexPolygonShape::_update_shape() { in _update_shape()
64 void ConvexPolygonShape::set_points(const PoolVector<Vector3> &p_points) { in set_points()
71 PoolVector<Vector3> ConvexPolygonShape::get_points() const { in get_points()
76 void ConvexPolygonShape::_bind_methods() { in _bind_methods()
78 ClassDB::bind_method(D_METHOD("set_points", "points"), &ConvexPolygonShape::set_points); in _bind_methods()
79 ClassDB::bind_method(D_METHOD("get_points"), &ConvexPolygonShape::get_points); in _bind_methods()
84 ConvexPolygonShape::ConvexPolygonShape() : in ConvexPolygonShape() function in ConvexPolygonShape
H A Dconvex_polygon_shape.h36 class ConvexPolygonShape : public Shape {
38 GDCLASS(ConvexPolygonShape, Shape);
52 ConvexPolygonShape();
H A Dmesh.cpp238 ERR_FAIL_COND_V(a.empty(), Ref<ConvexPolygonShape>()); in create_convex_shape()
243 Ref<ConvexPolygonShape> shape = memnew(ConvexPolygonShape); in create_convex_shape()
590 Ref<ConvexPolygonShape> shape; in convex_decompose()
/dports/devel/godot-tools/godot-3.2.3-stable/scene/3d/
H A Dcollision_polygon.cpp55 Ref<ConvexPolygonShape> convex = memnew(ConvexPolygonShape); in _build_polygon()
/dports/devel/godot/godot-3.2.3-stable/scene/3d/
H A Dcollision_polygon.cpp55 Ref<ConvexPolygonShape> convex = memnew(ConvexPolygonShape); in _build_polygon()
/dports/devel/godot2/godot-2.1.6-stable/scene/3d/
H A Dcollision_polygon.cpp59 Ref<ConvexPolygonShape> convex = memnew(ConvexPolygonShape); in _add_to_collision_object()
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/3d/
H A Dcollision_polygon.cpp59 Ref<ConvexPolygonShape> convex = memnew(ConvexPolygonShape); in _add_to_collision_object()
/dports/devel/godot-tools/godot-demo-projects-8d9d58f112d8/3d/kinematic_character/
H A Dpurple_cube.tscn23 [sub_resource type="ConvexPolygonShape" id=3]
/dports/devel/godot-tools/godot-demo-projects-8d9d58f112d8/3d/physics_tests/tests/functional/
H A Dtest_shapes.tscn14 [sub_resource type="ConvexPolygonShape" id=4]
/dports/devel/godot-tools/godot-demo-projects-8d9d58f112d8/3d/physics_tests/tests/performance/
H A Dtest_perf_contacts.tscn15 [sub_resource type="ConvexPolygonShape" id=4]
H A Dtest_perf_contacts_extended.tscn15 [sub_resource type="ConvexPolygonShape" id=4]
/dports/devel/godot-tools/godot-3.2.3-stable/modules/recast/
H A Dnavigation_mesh_generator.cpp215 ConvexPolygonShape *convex_polygon = Object::cast_to<ConvexPolygonShape>(*s); in _parse_geometry()
/dports/devel/godot/godot-3.2.3-stable/modules/recast/
H A Dnavigation_mesh_generator.cpp215 ConvexPolygonShape *convex_polygon = Object::cast_to<ConvexPolygonShape>(*s); in _parse_geometry()
/dports/devel/godot2/godot-2.1.6-stable/scene/
H A Dregister_scene_types.cpp553 ObjectTypeDB::register_type<ConvexPolygonShape>(); in register_scene_types()
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/
H A Dregister_scene_types.cpp553 ObjectTypeDB::register_type<ConvexPolygonShape>(); in register_scene_types()
/dports/editors/kakoune/kakoune-2021.11.08/rc/filetype/
H A Dgdscript.kak68 …e2D ConeTwistJoint ConfigFile ConfirmationDialog Container Control ConvexPolygonShape ConvexPolygo…

12