Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py')
-rw-r--r--source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py60
1 files changed, 0 insertions, 60 deletions
diff --git a/source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py b/source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py
deleted file mode 100644
index 4cbdbf7cebb..00000000000
--- a/source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py
+++ /dev/null
@@ -1,60 +0,0 @@
-from PyObjectPlus import *
-
-class KX_PhysicsObjectWrapper(PyObjectPlus):
- """
- KX_PhysicsObjectWrapper
-
- """
- def setActive(active):
- """
- Set the object to be active.
-
- @param active: set to True to be active
- @type active: bool
- """
-
- def setAngularVelocity(x, y, z, local):
- """
- Set the angular velocity of the object.
-
- @param x: angular velocity for the x-axis
- @type x: float
-
- @param y: angular velocity for the y-axis
- @type y: float
-
- @param z: angular velocity for the z-axis
- @type z: float
-
- @param local: set to True for local axis
- @type local: bool
- """
- def setLinearVelocity(x, y, z, local):
- """
- Set the linear velocity of the object.
-
- @param x: linear velocity for the x-axis
- @type x: float
-
- @param y: linear velocity for the y-axis
- @type y: float
-
- @param z: linear velocity for the z-axis
- @type z: float
-
- @param local: set to True for local axis
- @type local: bool
- """
- def setPosition(x, y, z):
- """
- Set the position of the object
-
- @param x: x coordinate
- @type x: float
-
- @param y: y coordinate
- @type y: float
-
- @param z: z coordinate
- @type z: float
- """