fx notes

Search

Search IconIcon to open search

Deformation Wrangle vs Attribute Wrangle

Last updated Sep 14, 2023 Edit Source

# Transforming Geometry

Matrix transformations can be applied to “every” attribute in one go using the deformation wrangle.

# Attribute Wrangle

1
2
3
4
matrix m = ident();
rotate(m, chf("angle"), 4);

v@P *= m;

# Deformation Wrangle

1
2
3
4
5
6
7
pos = pos;
xform = xform;

matrix m = ident();
rotate(m, chf("angle"), 4);

pos *= m;

Check out Roc Andic’s video I linked below to find out more!


sources / further reading:


Interactive Graph