Skip to content

Commit

Permalink
Tweaked some paper sizes and added ISO A2.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Aug 24, 2015
1 parent 7864356 commit 7f0abd4
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions structurizr-core/src/com/structurizr/view/PaperSize.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@
*/
public enum PaperSize {

A4_Portrait("A4", Orientation.Portrait, 2480, 3510),
A4_Landscape("A4", Orientation.Landscape, 3510, 2480),
A4_Portrait("A4", Orientation.Portrait, 2480, 3508),
A4_Landscape("A4", Orientation.Landscape, 3508, 2480),

A3_Portrait("A3", Orientation.Portrait, 3510, 4950),
A3_Landscape("A3", Orientation.Landscape, 4950, 3510),
A3_Portrait("A3", Orientation.Portrait, 3508, 4961),
A3_Landscape("A3", Orientation.Landscape, 4961, 3508),

A2_Portrait("A2", Orientation.Portrait, 4961, 7016),
A2_Landscape("A2", Orientation.Landscape, 7016, 4961),

Letter_Portrait("Letter", Orientation.Portrait, 2550, 3300),
Letter_Landscape("Letter", Orientation.Landscape, 3300, 2550),

Slide_4_3("Slide 4:3", Orientation.Landscape, 3306, 2480),
Slide_16_9("Slide 16:9", Orientation.Landscape, 3510, 1974);
Slide_16_9("Slide 16:9", Orientation.Landscape, 3508, 1973);

private String name;
private Orientation orientation;
Expand Down

0 comments on commit 7f0abd4

Please sign in to comment.