File: Group.java

package info (click to toggle)
libpj-java 0.0~20150107%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 13,396 kB
  • sloc: java: 99,543; ansic: 987; sh: 153; xml: 26; makefile: 10; sed: 4
file content (1963 lines) | stat: -rw-r--r-- 46,957 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
//******************************************************************************
//
// File:    Group.java
// Package: edu.rit.draw.item
// Unit:    Class edu.rit.draw.item.Group
//
// This Java source file is copyright (C) 2011 by Alan Kaminsky. All rights
// reserved. For further information, contact the author, Alan Kaminsky, at
// ark@cs.rit.edu.
//
// This Java source file is part of the Parallel Java Library ("PJ"). PJ is free
// software; you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// PJ is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// Linking this library statically or dynamically with other modules is making a
// combined work based on this library. Thus, the terms and conditions of the
// GNU General Public License cover the whole combination.
//
// As a special exception, the copyright holders of this library give you
// permission to link this library with independent modules to produce an
// executable, regardless of the license terms of these independent modules, and
// to copy and distribute the resulting executable under terms of your choice,
// provided that you also meet, for each linked independent module, the terms
// and conditions of the license of that module. An independent module is a
// module which is not derived from or based on this library. If you modify this
// library, you may extend this exception to your version of the library, but
// you are not obligated to do so. If you do not wish to do so, delete this
// exception statement from your version.
//
// A copy of the GNU General Public License is provided in the file gpl.txt. You
// may also obtain a copy of the GNU General Public License on the World Wide
// Web at http://www.gnu.org/licenses/gpl.html.
//
//******************************************************************************

package edu.rit.draw.item;

import edu.rit.draw.Drawing;

import java.awt.Graphics2D;

import java.awt.geom.AffineTransform;
import java.awt.geom.Point2D;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import java.util.ArrayList;

/**
 * Class Group provides a {@linkplain DrawingItem} that consists of a group of
 * other {@linkplain DrawingItem}s. To add drawing items to a group, call the
 * group's <TT>append()</TT> and <TT>prepend()</TT> methods.
 * <P>
 * The group can be scaled as a unit by calling the <TT>xScale()</TT> and
 * <TT>yScale()</TT> methods. The group can be sheared as a unit by calling the
 * <TT>xShear()</TT> and <TT>yShear()</TT> methods. The group can be rotated as
 * a unit by calling the <TT>rotationAngle()</TT> method; the group is always
 * rotated around its center point. The order in which these transforms are
 * applied is first scaling, then shearing, then rotation.
 * <P>
 * The group's "bounding box" is the smallest rectangle that encloses all the
 * contained drawing items' bounding boxes, <I>after</I> applying the scale,
 * shear, and rotation transforms if any. The <TT>nw()</TT>, <TT>n()</TT>,
 * <TT>ne()</TT>, <TT>w()</TT>, <TT>c()</TT>, <TT>e()</TT>, <TT>sw()</TT>,
 * <TT>s()</TT>, and <TT>se()</TT> methods refer to points on the group's
 * bounding box. The setter versions of these methods translate the group so the
 * designated point on the group's bounding box coincides with the point
 * specified as the argument. The getter versions of these methods return the
 * designated point on the group's bounding box.
 * <P>
 * The group's "original bounding box" is the smallest rectangle that encloses
 * all the contained drawing items' bounding boxes, <I>before</I> applying the
 * scale, shear, and rotation transforms if any. The <TT>orig_nw()</TT>,
 * <TT>orig_n()</TT>, <TT>orig_ne()</TT>, <TT>orig_w()</TT>, <TT>orig_c()</TT>,
 * <TT>orig_e()</TT>, <TT>orig_sw()</TT>, <TT>orig_s()</TT>, and
 * <TT>orig_se()</TT> methods refer to points on the group's original bounding
 * box. The setter versions of these methods translate the group so the
 * designated point on the group's original bounding box coincides with the
 * point specified as the argument. The getter versions of these methods return
 * the designated point on the group's original bounding box.
 * <P>
 * The <TT>transform()</TT> method takes a point, applies the group's scaling,
 * shearing, rotation, and translation transforms to the point, and returns the
 * transformed point. You can use this method, for example, to find out where a
 * point defined before applying transforms to the group would end up after
 * applying transforms to the group.
 *
 * @author  Alan Kaminsky
 * @version 29-Apr-2011
 */
public class Group
	extends DrawingItem
	implements Externalizable
	{

// Exported constants.

	/**
	 * The normal X scale factor (1).
	 */
	public static final double NORMAL_X_SCALE = 1.0;

	/**
	 * The normal Y scale factor (1).
	 */
	public static final double NORMAL_Y_SCALE = 1.0;

	/**
	 * The normal X shear factor (0).
	 */
	public static final double NORMAL_X_SHEAR = 0.0;

	/**
	 * The normal Y shear factor (0).
	 */
	public static final double NORMAL_Y_SHEAR = 0.0;

	/**
	 * The normal rotation angle (0).
	 */
	public static final double NORMAL_ROTATION_ANGLE = 0.0;

// Hidden data members.

	private static final long serialVersionUID = -2445041343028527776L;

	// Default attributes.
	static double theDefaultXScale = NORMAL_X_SCALE;
	static double theDefaultYScale = NORMAL_Y_SCALE;
	static double theDefaultXShear = NORMAL_X_SHEAR;
	static double theDefaultYShear = NORMAL_Y_SHEAR;
	static double theDefaultRotationAngle = NORMAL_ROTATION_ANGLE;

	// List of drawing items in this group.
	ArrayList<DrawingItem> myItemList;

	// Coordinates of most recently specified corner.
	double x;
	double y;

	// Factors for going from specified corner to northwest corner.
	double xFactor;
	double yFactor;

	// True if corner was specified with respect to original (untransformed)
	// bounding box. False if corner was specified with respect to (transformed)
	// bounding box.
	boolean cornerIsOriginal;

	// Transform parameters.
	double myXScale = theDefaultXScale;
	double myYScale = theDefaultYScale;
	double myXShear = theDefaultXShear;
	double myYShear = theDefaultYShear;
	double myRotationAngle = theDefaultRotationAngle;

	// Transform. If myTransform is null, the transform must be recomputed.
	AffineTransform myTransform;

	// Northwest point and size of original bounding box. If myOriginalNw is
	// null, these objects must be recomputed.
	Point myOriginalNw;
	Size myOriginalSize;

	// Northwest point and size of transformed bounding box. If myTransformedNw
	// is null, these objects must be recomputed.
	Point myTransformedNw;
	Size myTransformedSize;

// Exported constructors.

	/**
	 * Construct a new empty group. The group's northwest corner is located at
	 * (0,0).
	 */
	public Group()
		{
		super();
		this.myItemList = new ArrayList<DrawingItem>();
		}

	/**
	 * Construct a new group that contains the same drawing items, has the same
	 * transforms, and is at the same location, as the given group.
	 *
	 * @param  theGroup  Group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>theGroup</TT> is null.
	 */
	public Group
		(Group theGroup)
		{
		super (theGroup);
		this.myItemList = new ArrayList<DrawingItem> (theGroup.myItemList);
		this.x = theGroup.x;
		this.y = theGroup.y;
		this.xFactor = theGroup.xFactor;
		this.yFactor = theGroup.yFactor;
		this.cornerIsOriginal = theGroup.cornerIsOriginal;
		this.myXScale = theGroup.myXScale;
		this.myYScale = theGroup.myYScale;
		this.myXShear = theGroup.myXShear;
		this.myYShear = theGroup.myYShear;
		this.myRotationAngle = theGroup.myRotationAngle;
		}

// Exported operations.

	/**
	 * Returns the default X scale factor.
	 *
	 * @return  Default X scale factor.
	 */
	public static double defaultXScale()
		{
		return theDefaultXScale;
		}

	/**
	 * Set the default X scale factor. Before calling this method the first
	 * time, the default X scale factor is 1.
	 *
	 * @param  theXScale  Default X scale factor.
	 */
	public static void defaultXScale
		(double theXScale)
		{
		theDefaultXScale = theXScale;
		}

	/**
	 * Returns the default Y scale factor.
	 *
	 * @return  Default Y scale factor.
	 */
	public static double defaultYScale()
		{
		return theDefaultYScale;
		}

	/**
	 * Set the default Y scale factor. Before calling this method the first
	 * time, the default Y scale factor is 1.
	 *
	 * @param  theYScale  Default Y scale factor.
	 */
	public static void defaultYScale
		(double theYScale)
		{
		theDefaultYScale = theYScale;
		}

	/**
	 * Returns the default X shear factor.
	 *
	 * @return  Default X shear factor.
	 */
	public static double defaultXShear()
		{
		return theDefaultXShear;
		}

	/**
	 * Set the default X shear factor. Before calling this method the first
	 * time, the default X shear factor is 0.
	 *
	 * @param  theXShear  Default X shear factor.
	 */
	public static void defaultXShear
		(double theXShear)
		{
		theDefaultXShear = theXShear;
		}

	/**
	 * Returns the default Y shear factor.
	 *
	 * @return  Default Y shear factor.
	 */
	public static double defaultYShear()
		{
		return theDefaultYShear;
		}

	/**
	 * Set the default Y shear factor. Before calling this method the first
	 * time, the default Y shear factor is 0.
	 *
	 * @param  theYShear  Default Y shear factor.
	 */
	public static void defaultYShear
		(double theYShear)
		{
		theDefaultYShear = theYShear;
		}

	/**
	 * Returns the default rotation angle.
	 *
	 * @return  Default rotation angle.
	 */
	public static double defaultRotationAngle()
		{
		return theDefaultRotationAngle;
		}

	/**
	 * Set the default rotation angle. Before calling this method the first
	 * time, the default rotation angle is 0.
	 *
	 * @param  theAngle  Default rotation angle.
	 */
	public static void defaultRotationAngle
		(double theAngle)
		{
		theDefaultRotationAngle = theAngle;
		}

	/**
	 * Returns this group's X scale factor.
	 *
	 * @return  X scale factor.
	 */
	public double xScale()
		{
		return myXScale;
		}

	/**
	 * Set this group's X scale factor.
	 *
	 * @param  theXScale  X scale factor.
	 *
	 * @return  This group.
	 */
	public Group xScale
		(double theXScale)
		{
		myXScale = theXScale;
		myTransform = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Returns this group's Y scale factor.
	 *
	 * @return  Y scale factor.
	 */
	public double yScale()
		{
		return myYScale;
		}

	/**
	 * Set this group's Y scale factor.
	 *
	 * @param  theYScale  Y scale factor.
	 *
	 * @return  This group.
	 */
	public Group yScale
		(double theYScale)
		{
		myYScale = theYScale;
		myTransform = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Returns this group's X shear factor.
	 *
	 * @return  X shear factor.
	 */
	public double xShear()
		{
		return myXShear;
		}

	/**
	 * Set this group's X shear factor.
	 *
	 * @param  theXShear  X shear factor.
	 *
	 * @return  This group.
	 */
	public Group xShear
		(double theXShear)
		{
		myXShear = theXShear;
		myTransform = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Returns this group's Y shear factor.
	 *
	 * @return  Y shear factor.
	 */
	public double yShear()
		{
		return myYShear;
		}

	/**
	 * Set this group's Y shear factor.
	 *
	 * @param  theYShear  Y shear factor.
	 *
	 * @return  This group.
	 */
	public Group yShear
		(double theYShear)
		{
		myYShear = theYShear;
		myTransform = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Returns this group's rotation angle.
	 *
	 * @return  Rotation angle.
	 */
	public double rotationAngle()
		{
		return myRotationAngle;
		}

	/**
	 * Set this group's rotation angle.
	 *
	 * @param  theAngle  Rotation angle.
	 *
	 * @return  This group.
	 */
	public Group rotationAngle
		(double theAngle)
		{
		myRotationAngle = theAngle;
		myTransform = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Clear this group. All drawing items in this group are removed.
	 *
	 * @return  This group.
	 */
	public Group clear()
		{
		myItemList.clear();
		myOriginalNw = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Add the given drawing item to the end of this group's list of drawing
	 * items.
	 *
	 * @param  theItem  Drawing item.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>theItem</TT> is null.
	 */
	public Group append
		(DrawingItem theItem)
		{
		if (theItem == null) throw new NullPointerException();
		myItemList.add (theItem);
		myOriginalNw = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Add the given drawing item to the beginning of this group's list of
	 * drawing items.
	 *
	 * @param  theItem  Drawing item.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>theItem</TT> is null.
	 */
	public Group prepend
		(DrawingItem theItem)
		{
		if (theItem == null) throw new NullPointerException();
		myItemList.add (0, theItem);
		myOriginalNw = null;
		myTransformedNw = null;
		return this;
		}

	/**
	 * Returns the size of this group's bounding box.
	 *
	 * @return  Size.
	 */
	public Size size()
		{
		computeTransformedBoundingBox();
		return myTransformedSize;
		}

	/**
	 * Returns the width of this group's bounding box.
	 *
	 * @return  Width.
	 */
	public double width()
		{
		computeTransformedBoundingBox();
		return myTransformedSize.width();
		}

	/**
	 * Returns the height of this group's bounding box.
	 *
	 * @return  Height.
	 */
	public double height()
		{
		computeTransformedBoundingBox();
		return myTransformedSize.height();
		}

	/**
	 * Returns the northwest corner point of this group's bounding box.
	 *
	 * @return  Northwest corner point.
	 */
	public Point nw()
		{
		computeTransformedBoundingBox();
		return myTransformedNw;
		}

	/**
	 * Set the northwest corner point of this group's bounding box.
	 *
	 * @param  x  X coordinate of northwest corner point.
	 * @param  y  Y coordinate of northwest corner point.
	 *
	 * @return  This group.
	 */
	public Group nw
		(double x,
		 double y)
		{
		doNw (x, y, false);
		return this;
		}

	/**
	 * Set the northwest corner point of this group's bounding box.
	 *
	 * @param  thePoint  Northwest corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group nw
		(Point thePoint)
		{
		doNw (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the north middle point of this group's bounding box.
	 *
	 * @param  x  X coordinate of north middle point.
	 * @param  y  Y coordinate of north middle point.
	 *
	 * @return  This group.
	 */
	public Group n
		(double x,
		 double y)
		{
		doN (x, y, false);
		return this;
		}

	/**
	 * Set the north middle point of this group's bounding box.
	 *
	 * @param  thePoint  North middle point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group n
		(Point thePoint)
		{
		doN (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the northeast corner point of this group's bounding box.
	 *
	 * @param  x  X coordinate of northeast corner point.
	 * @param  y  Y coordinate of northeast corner point.
	 *
	 * @return  This group.
	 */
	public Group ne
		(double x,
		 double y)
		{
		doNe (x, y, false);
		return this;
		}

	/**
	 * Set the northeast corner point of this group's bounding box.
	 *
	 * @param  thePoint  Northeast corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group ne
		(Point thePoint)
		{
		doNe (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the west middle point of this group's bounding box.
	 *
	 * @param  x  X coordinate of west middle point.
	 * @param  y  Y coordinate of west middle point.
	 *
	 * @return  This group.
	 */
	public Group w
		(double x,
		 double y)
		{
		doW (x, y, false);
		return this;
		}

	/**
	 * Set the west middle point of this group's bounding box.
	 *
	 * @param  thePoint  West middle point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group w
		(Point thePoint)
		{
		doW (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the center point of this group's bounding box.
	 *
	 * @param  x  X coordinate of center point.
	 * @param  y  Y coordinate of center point.
	 *
	 * @return  This group.
	 */
	public Group c
		(double x,
		 double y)
		{
		doC (x, y, false);
		return this;
		}

	/**
	 * Set the center point of this group's bounding box.
	 *
	 * @param  thePoint  Center point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group c
		(Point thePoint)
		{
		doC (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the east middle point of this group's bounding box.
	 *
	 * @param  x  X coordinate of east middle point.
	 * @param  y  Y coordinate of east middle point.
	 *
	 * @return  This group.
	 */
	public Group e
		(double x,
		 double y)
		{
		doE (x, y, false);
		return this;
		}

	/**
	 * Set the east middle point of this group's bounding box.
	 *
	 * @param  thePoint  East middle point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group e
		(Point thePoint)
		{
		doE (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the southwest corner point of this group's bounding box.
	 *
	 * @param  x  X coordinate of southwest corner point.
	 * @param  y  Y coordinate of southwest corner point.
	 *
	 * @return  This group.
	 */
	public Group sw
		(double x,
		 double y)
		{
		doSw (x, y, false);
		return this;
		}

	/**
	 * Set the southwest corner point of this group's bounding box.
	 *
	 * @param  thePoint  Southwest corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group sw
		(Point thePoint)
		{
		doSw (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the south middle point of this group's bounding box.
	 *
	 * @param  x  X coordinate of south middle point.
	 * @param  y  Y coordinate of south middle point.
	 *
	 * @return  This group.
	 */
	public Group s
		(double x,
		 double y)
		{
		doS (x, y, false);
		return this;
		}

	/**
	 * Set the south middle point of this group's bounding box.
	 *
	 * @param  thePoint  South middle point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group s
		(Point thePoint)
		{
		doS (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Set the southeast corner point of this group's bounding box.
	 *
	 * @param  x  X coordinate of southeast corner point.
	 * @param  y  Y coordinate of southeast corner point.
	 *
	 * @return  This group.
	 */
	public Group se
		(double x,
		 double y)
		{
		doSe (x, y, false);
		return this;
		}

	/**
	 * Set the southeast corner point of this group's bounding box.
	 *
	 * @param  thePoint  Southeast corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group se
		(Point thePoint)
		{
		doSe (thePoint.x, thePoint.y, false);
		return this;
		}

	/**
	 * Returns the northwest corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  Northwest corner point.
	 */
	public Point orig_nw()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x,
				 myOriginalNw.y);
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the northwest corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of northwest corner point.
	 * @param  y  Y coordinate of northwest corner point.
	 *
	 * @return  This group.
	 */
	public Group orig_nw
		(double x,
		 double y)
		{
		doNw (x, y, true);
		return this;
		}

	/**
	 * Set the northwest corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  thePoint  Northwest corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_nw
		(Point thePoint)
		{
		doNw (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the north center point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  North center point.
	 */
	public Point orig_n()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x + 0.5*myOriginalSize.width,
				 myOriginalNw.y);
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the north center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of north center point.
	 * @param  y  Y coordinate of north center point.
	 *
	 * @return  This group.
	 */
	public Group orig_n
		(double x,
		 double y)
		{
		doN (x, y, true);
		return this;
		}

	/**
	 * Set the north center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  thePoint  North center point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_n
		(Point thePoint)
		{
		doN (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the northeast corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  Northeast corner point.
	 */
	public Point orig_ne()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x + myOriginalSize.width(),
				 myOriginalNw.y);
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the northeast corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of northeast corner point.
	 * @param  y  Y coordinate of northeast corner point.
	 *
	 * @return  This group.
	 */
	public Group orig_ne
		(double x,
		 double y)
		{
		doNe (x, y, true);
		return this;
		}

	/**
	 * Set the northeast corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  thePoint  Northeast corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_ne
		(Point thePoint)
		{
		doNe (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the west center point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  West center point.
	 */
	public Point orig_w()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x,
				 myOriginalNw.y + 0.5*myOriginalSize.height());
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the west center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of west center point.
	 * @param  y  Y coordinate of west center point.
	 *
	 * @return  This group.
	 */
	public Group orig_w
		(double x,
		 double y)
		{
		doW (x, y, true);
		return this;
		}

	/**
	 * Set the west center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  thePoint  West center point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_w
		(Point thePoint)
		{
		doW (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @return  Center point.
	 */
	public Point orig_c()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x + 0.5*myOriginalSize.width(),
				 myOriginalNw.y + 0.5*myOriginalSize.height());
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of center point.
	 * @param  y  Y coordinate of center point.
	 *
	 * @return  This group.
	 */
	public Group orig_c
		(double x,
		 double y)
		{
		doC (x, y, true);
		return this;
		}

	/**
	 * Set the center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  thePoint  Center point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_c
		(Point thePoint)
		{
		doC (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the east center point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  East center point.
	 */
	public Point orig_e()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x + myOriginalSize.width(),
				 myOriginalNw.y + 0.5*myOriginalSize.height());
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the east center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of east center point.
	 * @param  y  Y coordinate of east center point.
	 *
	 * @return  This group.
	 */
	public Group orig_e
		(double x,
		 double y)
		{
		doE (x, y, true);
		return this;
		}

	/**
	 * Set the east center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  thePoint  East center point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_e
		(Point thePoint)
		{
		doE (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the southwest corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  Southwest corner point.
	 */
	public Point orig_sw()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x,
				 myOriginalNw.y + myOriginalSize.height());
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the southwest corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of southwest corner point.
	 * @param  y  Y coordinate of southwest corner point.
	 *
	 * @return  This group.
	 */
	public Group orig_sw
		(double x,
		 double y)
		{
		doSw (x, y, true);
		return this;
		}

	/**
	 * Set the southwest corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  thePoint  Southwest corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_sw
		(Point thePoint)
		{
		doSw (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the south center point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  South center point.
	 */
	public Point orig_s()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x + 0.5*myOriginalSize.width(),
				 myOriginalNw.y + myOriginalSize.height());
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the south center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of south center point.
	 * @param  y  Y coordinate of south center point.
	 *
	 * @return  This group.
	 */
	public Group orig_s
		(double x,
		 double y)
		{
		doS (x, y, true);
		return this;
		}

	/**
	 * Set the south center point of this group's original bounding box, after
	 * applying the group's transformations if any.
	 *
	 * @param  thePoint  South center point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_s
		(Point thePoint)
		{
		doS (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the southeast corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @return  Southeast corner point.
	 */
	public Point orig_se()
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d =
			new Point2D.Double
				(myOriginalNw.x + myOriginalSize.width(),
				 myOriginalNw.y + myOriginalSize.height());
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

	/**
	 * Set the southeast corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  x  X coordinate of southeast corner point.
	 * @param  y  Y coordinate of southeast corner point.
	 *
	 * @return  This group.
	 */
	public Group orig_se
		(double x,
		 double y)
		{
		doSe (x, y, true);
		return this;
		}

	/**
	 * Set the southeast corner point of this group's original bounding box,
	 * after applying the group's transformations if any.
	 *
	 * @param  thePoint  Southeast corner point.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>thePoint</TT> is null.
	 */
	public Group orig_se
		(Point thePoint)
		{
		doSe (thePoint.x, thePoint.y, true);
		return this;
		}

	/**
	 * Returns the northwest corner point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  Northwest corner point.
	 */
	public Point content_nw()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x,
			 myOriginalNw.y);
		}

	/**
	 * Returns the north center point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  North center point.
	 */
	public Point content_n()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x + 0.5*myOriginalSize.width,
			 myOriginalNw.y);
		}

	/**
	 * Returns the northeast corner point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  Northeast corner point.
	 */
	public Point content_ne()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x + myOriginalSize.width,
			 myOriginalNw.y);
		}

	/**
	 * Returns the west center point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  West center point.
	 */
	public Point content_w()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x,
			 myOriginalNw.y + 0.5*myOriginalSize.height);
		}

	/**
	 * Returns the center point of this group's original bounding box, without
	 * applying the group's transformations if any.
	 *
	 * @return  Center point.
	 */
	public Point content_c()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x + 0.5*myOriginalSize.width,
			 myOriginalNw.y + 0.5*myOriginalSize.height);
		}

	/**
	 * Returns the east center point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  East center point.
	 */
	public Point content_e()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x + myOriginalSize.width,
			 myOriginalNw.y + 0.5*myOriginalSize.height);
		}

	/**
	 * Returns the southwest corner point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  Southwest corner point.
	 */
	public Point content_sw()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x,
			 myOriginalNw.y + myOriginalSize.height);
		}

	/**
	 * Returns the south center point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  South center point.
	 */
	public Point content_s()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x + 0.5*myOriginalSize.width,
			 myOriginalNw.y + myOriginalSize.height);
		}

	/**
	 * Returns the southeast corner point of this group's original bounding box,
	 * without applying the group's transformations if any.
	 *
	 * @return  Southeast corner point.
	 */
	public Point content_se()
		{
		computeOriginalBoundingBox();
		return new Point
			(myOriginalNw.x + myOriginalSize.width,
			 myOriginalNw.y + myOriginalSize.height);
		}

	/**
	 * Add this group to the end of the default drawing's sequence of drawing
	 * items.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if there is no default drawing.
	 *
	 * @see  Drawing#defaultDrawing()
	 */
	public Group add()
		{
		doAdd (Drawing.defaultDrawing());
		return this;
		}

	/**
	 * Add this group to the end of the given drawing's sequence of drawing
	 * items.
	 *
	 * @param  theDrawing  Drawing.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>theDrawing</TT> is null.
	 */
	public Group add
		(Drawing theDrawing)
		{
		doAdd (theDrawing);
		return this;
		}

	/**
	 * Add this group to the beginning of the default drawing's sequence of
	 * drawing items.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if there is no default drawing.
	 *
	 * @see  Drawing#defaultDrawing()
	 */
	public Group addFirst()
		{
		doAddFirst (Drawing.defaultDrawing());
		return this;
		}

	/**
	 * Add this group to the beginning of the given drawing's sequence of
	 * drawing items.
	 *
	 * @param  theDrawing  Drawing.
	 *
	 * @return  This group.
	 *
	 * @exception  NullPointerException
	 *     (unchecked exception) Thrown if <TT>theDrawing</TT> is null.
	 */
	public Group addFirst
		(Drawing theDrawing)
		{
		doAddFirst (theDrawing);
		return this;
		}

	/**
	 * Write this group to the given object output stream.
	 *
	 * @param  out  Object output stream.
	 *
	 * @exception  IOException
	 *     Thrown if an I/O error occurred.
	 */
	public void writeExternal
		(ObjectOutput out)
		throws IOException
		{
		super.writeExternal (out);
		int n = myItemList.size();
		out.writeInt (n);
		for (DrawingItem item : myItemList)
			{
			out.writeObject (item);
			}
		out.writeDouble (x);
		out.writeDouble (y);
		out.writeDouble (xFactor);
		out.writeDouble (yFactor);
		out.writeBoolean (cornerIsOriginal);
		out.writeDouble (myXScale);
		out.writeDouble (myYScale);
		out.writeDouble (myXShear);
		out.writeDouble (myYShear);
		out.writeDouble (myRotationAngle);
		}

	/**
	 * Read this group from the given object input stream.
	 *
	 * @param  in  Object input stream.
	 *
	 * @exception  IOException
	 *     Thrown if an I/O error occurred.
	 * @exception  ClassNotFoundException
	 *     Thrown if any class needed to deserialize this group cannot be found.
	 */
	public void readExternal
		(ObjectInput in)
		throws IOException, ClassNotFoundException
		{
		super.readExternal (in);
		myItemList.clear();
		int n = in.readInt();
		for (int i = 0; i < n; ++ i)
			{
			myItemList.add ((DrawingItem) in.readObject());
			}
		x = in.readDouble();
		y = in.readDouble();
		xFactor = in.readDouble();
		yFactor = in.readDouble();
		cornerIsOriginal = in.readBoolean();
		myXScale = in.readDouble();
		myYScale = in.readDouble();
		myXShear = in.readDouble();
		myYShear = in.readDouble();
		myRotationAngle = in.readDouble();
		myTransform = null;
		myOriginalNw = null;
		myTransformedNw = null;
		}

	/**
	 * Draw this drawing item in the given graphics context. This method is
	 * allowed to change the graphics context's paint, stroke, and transform,
	 * and it doesn't have to change them back.
	 *
	 * @param  g2d  2-D graphics context.
	 */
	public void draw
		(Graphics2D g2d)
		{
		super.draw (g2d);

		// Apply the scaling, shearing, rotation, and translation transforms.
		computeTransformedBoundingBox();
		AffineTransform oldTransform = g2d.getTransform();
		g2d.transform (myTransform);

		// Draw each item.
		for (DrawingItem item : myItemList)
			{
			item.draw (g2d);
			}

		// Restore transform. This is necessary to draw nested groups.
		g2d.setTransform (oldTransform);
		}

	/**
	 * Transform the given point by applying this group's scaling, shearing,
	 * rotation, and translation transforms.
	 *
	 * @param  thePoint  Point before applying transforms.
	 *
	 * @return  Point after applying transforms.
	 */
	public Point transform
		(Point thePoint)
		{
		computeTransformedBoundingBox();
		Point2D.Double p2d = new Point2D.Double (thePoint.x, thePoint.y);
		myTransform.transform (p2d, p2d);
		return new Point (p2d.x, p2d.y);
		}

// Hidden operations.

	/**
	 * Compute the original bounding box of this group. Store the results in the
	 * myOriginalNw and myOriginalSize fields.
	 */
	private void computeOriginalBoundingBox()
		{
		if (myOriginalNw == null)
			{
			Point p;
			double minX = Double.MAX_VALUE;
			double minY = Double.MAX_VALUE;
			double maxX = Double.MIN_VALUE;
			double maxY = Double.MIN_VALUE;
			for (DrawingItem item : myItemList)
				{
				p = item.nw();
				minX = Math.min (minX, p.x);
				minY = Math.min (minY, p.y);
				p = item.se();
				maxX = Math.max (maxX, p.x);
				maxY = Math.max (maxY, p.y);
				}
			myOriginalNw = new Point (minX, minY);
			myOriginalSize = new Size (maxX - minX, maxY - minY);
			}
		}

	/**
	 * Compute the transformed bounding box of this group. Store the results in
	 * the myTransformedNw and myTransformedSize fields.
	 */
	private void computeTransformedBoundingBox()
		{
		if (myTransformedNw == null)
			{
			Point p;
			Point2D.Double p2d = new Point2D.Double();
			AffineTransform t = new AffineTransform();
			AffineTransform t2 = new AffineTransform();

			// Compute original bounding box, to find its center.
			computeOriginalBoundingBox();

			// Set up transform with just scale and shear.
			t.shear
				(/*shx*/ myXShear,
				 /*shy*/ myYShear);
			t.scale
				(/*sx*/ myXScale,
				 /*sy*/ myYScale);

			// Scale and shear the original bounding box's center.
			p2d.x = myOriginalNw.x() + myOriginalSize.width()/2;
			p2d.y = myOriginalNw.y() + myOriginalSize.height()/2;
			t.transform (p2d, p2d);

			// Prepend rotation to transform.
			t2.setToRotation
				(/*theta*/ myRotationAngle,
				 /*x    */ p2d.x,
				 /*y    */ p2d.y);
			t.preConcatenate (t2);

			// Compute bounding box with just scale, shear, and rotation.
			double minX = Double.MAX_VALUE;
			double minY = Double.MAX_VALUE;
			double maxX = Double.MIN_VALUE;
			double maxY = Double.MIN_VALUE;
			for (DrawingItem item : myItemList)
				{
				p = item.nw(); p2d.x = p.x; p2d.y = p.y;
				t.transform (p2d, p2d);
				minX = Math.min (minX, p2d.x);
				minY = Math.min (minY, p2d.y);
				maxX = Math.max (maxX, p2d.x);
				maxY = Math.max (maxY, p2d.y);
				p = item.ne(); p2d.x = p.x; p2d.y = p.y;
				t.transform (p2d, p2d);
				minX = Math.min (minX, p2d.x);
				minY = Math.min (minY, p2d.y);
				maxX = Math.max (maxX, p2d.x);
				maxY = Math.max (maxY, p2d.y);
				p = item.sw(); p2d.x = p.x; p2d.y = p.y;
				t.transform (p2d, p2d);
				minX = Math.min (minX, p2d.x);
				minY = Math.min (minY, p2d.y);
				maxX = Math.max (maxX, p2d.x);
				maxY = Math.max (maxY, p2d.y);
				p = item.se(); p2d.x = p.x; p2d.y = p.y;
				t.transform (p2d, p2d);
				minX = Math.min (minX, p2d.x);
				minY = Math.min (minY, p2d.y);
				maxX = Math.max (maxX, p2d.x);
				maxY = Math.max (maxY, p2d.y);
				}

			// Record transformed bounding box's size.
			myTransformedSize = new Size (maxX - minX, maxY - minY);

			// Corner was specified with respect to original bounding box.
			if (cornerIsOriginal)
				{
				// Compute original corner point based on (xFactor,yFactor).
				p2d.x = myOriginalNw.x - xFactor*myOriginalSize.width();
				p2d.y = myOriginalNw.y - yFactor*myOriginalSize.height();

				// Transform it by scale, shear, and rotation.
				t.transform (p2d, p2d);

				// Translate it to the point (x,y).
				t2.setToTranslation
					(/*tx*/ x - p2d.x,
					 /*ty*/ y - p2d.y);
				t.preConcatenate (t2);

				// Compute transformed NW point.
				myTransformedNw =
					new Point (minX + x - p2d.x, minY + y - p2d.y);
				}

			// Corner was specified with respect to transformed bounding box.
			else
				{
				// Compute transformed NW point based on (x,y) and
				// (xFactor,yFactor).
				myTransformedNw =
					new Point
						(x + xFactor*myTransformedSize.width(),
						 y + yFactor*myTransformedSize.height());

				// Translate the point (minX,minY) to the point myTransformedNw.
				t2.setToTranslation
					(/*tx*/ myTransformedNw.x - minX,
					 /*ty*/ myTransformedNw.y - minY);
				t.preConcatenate (t2);
				}

			// Save final transformation.
			myTransform = t;
			}
		}

	/**
	 * Set the northwest corner point of this group's bounding
	 * box.
	 *
	 * @param  x     X coordinate of northwest corner point.
	 * @param  y     Y coordinate of northwest corner point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doNw
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = 0.0;
		this.yFactor = 0.0;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the north middle point of this group's bounding box.
	 *
	 * @param  x     X coordinate of north middle point.
	 * @param  y     Y coordinate of north middle point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doN
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = -0.5;
		this.yFactor = 0.0;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the northeast corner point of this group's bounding box.
	 *
	 * @param  x     X coordinate of northeast corner point.
	 * @param  y     Y coordinate of northeast corner point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doNe
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = -1.0;
		this.yFactor = 0.0;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the west middle point of this group's bounding box.
	 *
	 * @param  x     X coordinate of west middle point.
	 * @param  y     Y coordinate of west middle point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doW
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = 0.0;
		this.yFactor = -0.5;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the center point of this group's bounding box.
	 *
	 * @param  x     X coordinate of center point.
	 * @param  y     Y coordinate of center point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doC
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = -0.5;
		this.yFactor = -0.5;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the east middle point of this group's bounding box.
	 *
	 * @param  x     X coordinate of east middle point.
	 * @param  y     Y coordinate of east middle point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doE
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = -1.0;
		this.yFactor = -0.5;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the southwest corner point of this group's bounding box.
	 *
	 * @param  x     X coordinate of southwest corner point.
	 * @param     y  Y coordinate of southwest corner point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doSw
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = 0.0;
		this.yFactor = -1.0;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the south middle point of this group's bounding box.
	 *
	 * @param  x     X coordinate of south middle point.
	 * @param  y     Y coordinate of south middle point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doS
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = -0.5;
		this.yFactor = -1.0;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	/**
	 * Set the southeast corner point of this group's bounding box.
	 *
	 * @param  x     X coordinate of southeast corner point.
	 * @param  y     Y coordinate of southeast corner point.
	 * @param  orig  True if original corner, false if transformed corner.
	 */
	void doSe
		(double x,
		 double y,
		 boolean orig)
		{
		this.x = x;
		this.y = y;
		this.xFactor = -1.0;
		this.yFactor = -1.0;
		this.cornerIsOriginal = orig;
		this.myOriginalNw = null;
		this.myTransformedNw = null;
		}

	}