dvipdfm rotates embedded postscript in 100ths of radians rather than
degrees. PR: 27366 Submitted by: maintainer
This commit is contained in:
parent
d345c1d87e
commit
4287108b81
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43238
11
print/dvipdfm/files/patch-psspecial.c
Normal file
11
print/dvipdfm/files/patch-psspecial.c
Normal file
@ -0,0 +1,11 @@
|
||||
--- psspecial.c.orig Tue May 29 20:02:33 2001
|
||||
+++ psspecial.c Tue May 29 20:03:09 2001
|
||||
@@ -116,7 +116,7 @@
|
||||
p -> yscale = atof(val)/100.0;
|
||||
break;
|
||||
case ANGLE:
|
||||
- p -> rotate = atof(val)/100.0;
|
||||
+ p -> rotate = atof(val) * M_PI / 180.0;
|
||||
break;
|
||||
case LLX:
|
||||
p -> user_bbox = 1;
|
Loading…
Reference in New Issue
Block a user