QCAD - 2D CAD System.
Click here for a documentation of the DokuWiki formatting syntax that can be used in reports
Please search for existing tasks (also closed ones) before opening a new task.
Please make sure that you are using the latest Version of QCAD before posting a bug (menu Help - Check for Updates)
FS#299 - Text of rotated dimensions in SVG PG export
Attached to Project:
QCAD
Opened by Peter (hungerburg) - Friday, 07 October 2011, 13:16 GMT+2
Last edited by Andrew (andrew) - Friday, 07 October 2011, 16:31 GMT+2
Opened by Peter (hungerburg) - Friday, 07 October 2011, 13:16 GMT+2
Last edited by Andrew (andrew) - Friday, 07 October 2011, 16:31 GMT+2
|
DetailsSometimes the text of a dimension (that is in a block - just a suspicion of mine) will not get rotated. I do not know why this.text.getAngle() sometimes returns a wrong value, but there is a simple workaround: always rotate the text with the dimension: --- SvgExporterPG-orig.js 2011-09-15 23:11:40.000000000 +0200
+++ SvgExporterPG.js 2011-10-07 13:07:03.715374911 +0200
@@ -428,9 +427,7 @@
// dimension entity: export text:
this.writeEntityComment(entity);
this.text = entity.getTextData();
-// var angle = this.text.getAngle();
-// var offset = RVector.createPolar(this.text.getHeight()/2, angle + Math.PI/2);
-// this.text.move(offset);
+ this.text.setAngle(entity.getAngle());
this.textColor = entity.getColor();
this.exportText();
this.text = undefined;
|
This task depends upon
Thanks. I was able to fix this in another place.