This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/python/api2_2x/doc/Pose.py

123 lines
3.4 KiB
Python
Raw Normal View History

2006-01-11 20:48:46 +00:00
# Blender.Object.Pose module
"""
The Blender.Object.Pose submodule.
Pose
====
This module provides access to B{Pose} objects in Blender. This Pose is the
2006-01-11 20:48:46 +00:00
current object-level (as opposed to armature-data level) transformation.
Example::
@var ROT:
@type ROT: Constant
@var LOC:
@type LOC: Constant
@var SIZE:
@type SIZE: Constant
"""
class Pose:
"""
The Pose object
===============
This object gives access to Pose-specific data in Blender.
@ivar bones: A Dictionary of PosePoseBones (PoseDict) that make up this Pose.
@type bones: PoseDict Object
"""
def update():
"""
Save all changes and update the Pose.
@rtype: None
"""
class PoseBonesDict:
"""
The PoseBonesDict object
========================
This object gives dictionary like access to the PoseBones in a Pose.
2006-01-11 20:48:46 +00:00
It is internal to blender but is called as 'Pose.bones'
"""
def items():
"""
Return the key, value pairs in this dictionary
2006-01-11 20:48:46 +00:00
@rtype: string, PosePoseBone
@return: All strings, and PosePoseBones in the Pose (in that order)
"""
def keys():
"""
Return the keys in this dictionary
2006-01-11 20:48:46 +00:00
@rtype: string
@return: All strings representing the PosePoseBone names
"""
def values():
"""
Return the values in this dictionary
2006-01-11 20:48:46 +00:00
@rtype: BPy_PoseBone
@return: All PosePoseBones in this dictionary
"""
class PoseBone:
"""
The PoseBone object
===================
This object gives access to PoseBone-specific data in Blender.
@ivar name: The name of this PoseBone.
@type name: String
@ivar loc: The change in location for this PoseBone.
@type loc: Vector object
@ivar size: The change in size for this PoseBone (no change is 1,1,1)
2006-01-11 20:48:46 +00:00
@type size: Vector object
@ivar quat: The change in rotation for this PoseBone.
@type quat: Quaternion object
@ivar head: The final head location for this PoseBone. (not settable)
@type head: Vector object
@ivar tail: The final tail location for this PoseBone. (not settable)
@type tail: Vector object
@ivar sel: The selection state of this bone
@type sel: Boolean
@ivar parent: The parent of this posebone (not settable)
@type parent: posebone or None
2006-01-11 20:48:46 +00:00
@ivar localMatrix: The matrix combination of rot/quat/loc.
@type localMatrix: Matrix object
@ivar poseMatrix: The total transformation of this PoseBone including constraints.
(not settable).
This matrix is in armature space, for the current worldspace location of this pose bone, multiply
it with its objects worldspace matrix
eg. pose_bone.poseMatrix * object.matrixWorld
2006-01-11 20:48:46 +00:00
@type poseMatrix: Matrix object
@type constraints: BPy_ConstraintSeq
@ivar constraints: a sequence of constraints for the object
2006-05-14 18:29:32 +00:00
@type limitmin: A 3-item sequence
@ivar limitmin: The x,y,z minimum limits on rotation when part of an IK
@type limitmax: A 3-item sequence
@ivar limitmax: The x,y,z maximum limits on rotation when part of an IK
2006-01-11 20:48:46 +00:00
"""
def insertKey(parentObject, frameNumber, type):
"""
Insert a pose key for this PoseBone at a frame.
@type parentObject: Object object
@param parentObject: The object the pose came from.
@type frameNumber: integer
@param frameNumber: The frame number to insert the pose key on.
@type type: Constant object
@param type: Can be any combination of 3 Module constants:
- Pose.LOC
- Pose.ROT
- Pose.QUAT
@rtype: None
"""