Merge pull request #692 from gianlucafiore/fix/690-text-rotation

Fix text rotation transforms
This commit is contained in:
Hakan Seven 2026-08-07 11:40:12 +03:00
commit 05f875b1ff
2 changed files with 11 additions and 0 deletions

View file

@ -554,6 +554,11 @@ fn apply_transform(t: &mut MText, tr: &EntityTransform) {
let line_angle = dy.atan2(dx);
entity.rotation = 2.0 * line_angle - entity.rotation;
});
// Keep MTEXT's explicit rotation in sync with ROTATE / ALIGN.
if let EntityTransform::Rotate { angle_rad, .. } = tr {
t.rotation =
(t.rotation + *angle_rad).rem_euclid(std::f64::consts::TAU);
}
}
impl TruckConvertible for MText {

View file

@ -484,6 +484,12 @@ fn apply_transform(t: &mut Text, tr: &EntityTransform) {
entity.rotation = 2.0 * line_angle - entity.rotation;
entity.oblique_angle = -entity.oblique_angle;
});
// The generic entity transform moves the TEXT geometry, but acadrust
// does not update the DXF rotation field used by our text renderer.
if let EntityTransform::Rotate { angle_rad, .. } = tr {
t.rotation =
(t.rotation + *angle_rad).rem_euclid(std::f64::consts::TAU);
}
}
impl TruckConvertible for Text {