Fix 'Apply Transform' node applying only to anchors but not also handles (#3687)

This commit is contained in:
Keavon Chambers 2026-01-26 12:32:17 -08:00 committed by GitHub
parent 3488d5b8e7
commit 19e9af3d43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}