From 17475f7ad28bb0773b850135696c7719d6b58735 Mon Sep 17 00:00:00 2001 From: bjorn Date: Fri, 5 Apr 2024 00:38:34 -0700 Subject: [PATCH] rm unused shape prototypes; --- src/modules/physics/physics.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modules/physics/physics.h b/src/modules/physics/physics.h index 7e8d135b..ea83aaf7 100644 --- a/src/modules/physics/physics.h +++ b/src/modules/physics/physics.h @@ -164,10 +164,6 @@ bool lovrShapeIsEnabled(Shape* shape); void lovrShapeSetEnabled(Shape* shape, bool enabled); bool lovrShapeIsSensor(Shape* shape); void lovrShapeSetSensor(Shape* shape, bool sensor); -void lovrShapeGetPosition(Shape* shape, float* x, float* y, float* z); -void lovrShapeSetPosition(Shape* shape, float x, float y, float z); -void lovrShapeGetOrientation(Shape* shape, float* orientation); -void lovrShapeSetOrientation(Shape* shape, float* orientation); void lovrShapeGetMass(Shape* shape, float density, float* cx, float* cy, float* cz, float* mass, float inertia[6]); void lovrShapeGetAABB(Shape* shape, float aabb[6]);