Skip to content

Commit 19e9af3

Browse files
authored
Fix 'Apply Transform' node applying only to anchors but not also handles (#3687)
1 parent 3488d5b commit 19e9af3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

node-graph/nodes/vector/src/vector_modification_nodes.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ async fn apply_transform(_ctx: impl Ctx, mut vector: Table<Vector>) -> Table<Vec
3636
for (_, point) in vector.point_domain.positions_mut() {
3737
*point = transform.transform_point2(*point);
3838
}
39+
vector.segment_domain.transform(transform);
3940

4041
*row.transform = DAffine2::IDENTITY;
4142
}

0 commit comments

Comments
 (0)