Handy classes for working with trees of 3d transformations.
Project description
transform3d
Handy classes for working with trees of 3d transformations.
Uses scipy.spatial.transform.Rotation for stable conversions between rotation representations.
install
$ pip install transform3d
convention
a_t_b denotes b relative to a, such that a point
in frame b, p_b, is transformed to frame a by: p_a = a_t_b @ p_b
(Note that @ is the matmul operator in python.)
This provides easy to read series of transformations:
a_t_d = a_t_b @ b_t_c @ c_t_d.
usage
import numpy as np
from transform3d import Transform, SceneNode, SceneState
# basic Transform usage
a_t_b = Transform(p=(1, 0, 0), rotvec=(0, 0, 0))
b_t_c = Transform(p=(0, 0, 1), rpy=(0, 0, np.pi / 2))
a_t_c = a_t_b @ b_t_c
c_t_a = a_t_c.inv
# transform a point from a's frame to c's frame
p_a = (1, 0, 0)
p_c = c_t_a @ p_a
# or multiple points
p_a = np.random.randn(2, 3) # two points (x, y, z)
p_c = c_t_a @ p_a
# rotate vectors
v_a = (1, 0, 0)
v_c = c_t_a.rotate(v_a)
# or screws (6d, eg. force-torque)
s_a = (1, 0, 0, 1, 0, 0)
s_c = c_t_a.rotate(v_a)
# using SceneNode to build a tree
root = SceneNode()
a = SceneNode(parent=root)
b = SceneNode(parent=root)
c = SceneNode(parent=b)
# or:
root, a, b, c = SceneNode.n(4)
root.adopt(
a,
b.adopt(c)
)
# set node transforms in relation to parents
state = SceneState()
state[a] = Transform(p=(1, 0, 0), rpy=(np.pi, 0, 0))
state[b] = Transform(rotvec=(0, 90, 0), degrees=True)
state[c] = Transform(quat=(0, 0, 0, 1))
# calculate transforms between nodes
c_t_a = c.p(a, state) # type: Transform
# solve for transforms
c_t_a_desired = Transform(p=(1, 2, 3), R=np.eye(3))
state[b] = b.solve(c, a, c_t_a_desired, state)
assert c.p(a, state).equals(c_t_a_desired)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file transform3d-0.0.2.tar.gz.
File metadata
- Download URL: transform3d-0.0.2.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
745a8f10c6ef886b771a2784f695701a15aab4482105873039c5e1ba06dc2541
|
|
| MD5 |
b401d1622812d62178f8cb68519ac304
|
|
| BLAKE2b-256 |
3cf40605eaa23a4986231a5184e86c2efbd4055a77ae60fb27f159a8676711be
|
File details
Details for the file transform3d-0.0.2-py3-none-any.whl.
File metadata
- Download URL: transform3d-0.0.2-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c994272231cf545b498a665411a29dbc74f0ab9533096e0c1d06fb2c9e812a4
|
|
| MD5 |
81a2183135172fea3f604243e4235f05
|
|
| BLAKE2b-256 |
fa27ae29ab9aefe3e29fb6b7060b319e21e1ee7786432ff766824bc3eaf40fe2
|