Fix 'Apply Transform' node applying only to anchors but not also handles (#3687)
This commit is contained in:
parent
3488d5b8e7
commit
19e9af3d43
|
|
@ -36,6 +36,7 @@ async fn apply_transform(_ctx: impl Ctx, mut vector: Table<Vector>) -> Table<Vec
|
|||
for (_, point) in vector.point_domain.positions_mut() {
|
||||
*point = transform.transform_point2(*point);
|
||||
}
|
||||
vector.segment_domain.transform(transform);
|
||||
|
||||
*row.transform = DAffine2::IDENTITY;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue