@thegraid/hexlib 1.3.4 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/table.d.ts CHANGED
@@ -102,7 +102,10 @@ export declare class Table extends Dispatcher {
102
102
  enableHexInspector(qY?: number, cont?: Container): HexShape;
103
103
  downClick: boolean;
104
104
  isVisible: boolean;
105
- /** invoked by enableHexInspector or KeyBinding. */
105
+ /** invoked by enableHexInspector or KeyBinding:
106
+ *
107
+ * Tile.allTiles.textVis(vis); hexMap.hex.showText(vis);
108
+ */
106
109
  toggleText(vis?: boolean): void;
107
110
  cacheScale: number;
108
111
  /**
@@ -114,13 +117,21 @@ export declare class Table extends Dispatcher {
114
117
  */
115
118
  reCacheTiles(setCache?: boolean, cacheScale?: number): void;
116
119
  aiControl(color?: string, dx?: number, rad?: number): Container;
117
- /** all the non-map hexes created by newHex2 */
120
+ /** all the non-map hexes created by newHex2; included in Tile.markLegal() */
118
121
  newHexes: IHex2[];
119
- newHex2(row: number | undefined, col: number | undefined, name: string, claz?: Constructor<IHex2>, sy?: number): {
122
+ /**
123
+ * create an off-map Hex2; push to this.newHexes[]
124
+ * @param row [0] aligned with hexMap
125
+ * @param col [0] aligned with hexMap
126
+ * @param name hex.Aname & hex.distText
127
+ * @param claz extends Hex2
128
+ * @returns the new Hex2
129
+ */
130
+ newHex2(row: number | undefined, col: number | undefined, name: string, claz?: Constructor<IHex2>): {
120
131
  readonly implementsIHex2: true;
121
132
  readonly cont: import("./hex").HexCont;
122
133
  readonly radius: number;
123
- readonly hexShape: HexShape;
134
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
124
135
  readonly mapCont: import("./hex").MapCont;
125
136
  readonly markCont: Container;
126
137
  x: number;
@@ -135,7 +146,7 @@ export declare class Table extends Dispatcher {
135
146
  readonly implementsIHex2: true;
136
147
  readonly cont: import("./hex").HexCont;
137
148
  readonly radius: number;
138
- readonly hexShape: HexShape;
149
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
139
150
  readonly mapCont: import("./hex").MapCont;
140
151
  readonly markCont: Container;
141
152
  x: number;
@@ -155,7 +166,7 @@ export declare class Table extends Dispatcher {
155
166
  isLegal: boolean;
156
167
  initCont: (row: number, col: number) => void;
157
168
  reCache: (scale?: number) => void;
158
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
169
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
159
170
  setHexColor: (color: string, district?: number | undefined) => void;
160
171
  metricDist: (hex: Hex) => number;
161
172
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -220,7 +231,7 @@ export declare class Table extends Dispatcher {
220
231
  isLegal: boolean;
221
232
  initCont: (row: number, col: number) => void;
222
233
  reCache: (scale?: number) => void;
223
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
234
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
224
235
  setHexColor: (color: string, district?: number | undefined) => void;
225
236
  metricDist: (hex: Hex) => number;
226
237
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -277,14 +288,12 @@ export declare class Table extends Dispatcher {
277
288
  lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
278
289
  radialDist: (hex: Hex) => number;
279
290
  };
280
- noRowHex(name: string, crxy: {
281
- row: number;
282
- col: number;
283
- }, claz?: Constructor<IHex2>): {
291
+ /** if hextowns/ankh ever want the half-row offset, they can override as follows: */
292
+ newHex2a(row: number | undefined, col: number | undefined, name: string, claz?: Constructor<IHex2>, sy?: number): {
284
293
  readonly implementsIHex2: true;
285
294
  readonly cont: import("./hex").HexCont;
286
295
  readonly radius: number;
287
- readonly hexShape: HexShape;
296
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
288
297
  readonly mapCont: import("./hex").MapCont;
289
298
  readonly markCont: Container;
290
299
  x: number;
@@ -299,7 +308,7 @@ export declare class Table extends Dispatcher {
299
308
  readonly implementsIHex2: true;
300
309
  readonly cont: import("./hex").HexCont;
301
310
  readonly radius: number;
302
- readonly hexShape: HexShape;
311
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
303
312
  readonly mapCont: import("./hex").MapCont;
304
313
  readonly markCont: Container;
305
314
  x: number;
@@ -319,7 +328,7 @@ export declare class Table extends Dispatcher {
319
328
  isLegal: boolean;
320
329
  initCont: (row: number, col: number) => void;
321
330
  reCache: (scale?: number) => void;
322
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
331
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
323
332
  setHexColor: (color: string, district?: number | undefined) => void;
324
333
  metricDist: (hex: Hex) => number;
325
334
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -384,7 +393,7 @@ export declare class Table extends Dispatcher {
384
393
  isLegal: boolean;
385
394
  initCont: (row: number, col: number) => void;
386
395
  reCache: (scale?: number) => void;
387
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
396
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
388
397
  setHexColor: (color: string, district?: number | undefined) => void;
389
398
  metricDist: (hex: Hex) => number;
390
399
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -551,14 +560,20 @@ export declare class Table extends Dispatcher {
551
560
  * @param row0 [.75] offset in y direction
552
561
  * @param colN [4] number of Hex to create
553
562
  * @param hexC [this.hexC]
554
- * @param vis [false] initial visiblity
563
+ * @param opts
564
+ * @param - vis [false] initial visiblity
565
+ * @param - gap [0] space between columns
566
+ *
555
567
  * @returns hexC[] with each hex.cont.xy offset to appear over panel
556
568
  */
557
- hexesOnPanel(panel: Container, row0?: number, colN?: number, hexC?: Constructor<{
569
+ hexesOnPanel(panel: Container, row0?: number, colN?: number, hexC?: Constructor<IHex2>, opts?: {
570
+ vis?: boolean;
571
+ gap?: number;
572
+ }): {
558
573
  readonly implementsIHex2: true;
559
574
  readonly cont: import("./hex").HexCont;
560
575
  readonly radius: number;
561
- readonly hexShape: HexShape;
576
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
562
577
  readonly mapCont: import("./hex").MapCont;
563
578
  readonly markCont: Container;
564
579
  x: number;
@@ -573,7 +588,7 @@ export declare class Table extends Dispatcher {
573
588
  readonly implementsIHex2: true;
574
589
  readonly cont: import("./hex").HexCont;
575
590
  readonly radius: number;
576
- readonly hexShape: HexShape;
591
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
577
592
  readonly mapCont: import("./hex").MapCont;
578
593
  readonly markCont: Container;
579
594
  x: number;
@@ -593,7 +608,7 @@ export declare class Table extends Dispatcher {
593
608
  isLegal: boolean;
594
609
  initCont: (row: number, col: number) => void;
595
610
  reCache: (scale?: number) => void;
596
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
611
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
597
612
  setHexColor: (color: string, district?: number | undefined) => void;
598
613
  metricDist: (hex: Hex) => number;
599
614
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -658,167 +673,7 @@ export declare class Table extends Dispatcher {
658
673
  isLegal: boolean;
659
674
  initCont: (row: number, col: number) => void;
660
675
  reCache: (scale?: number) => void;
661
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
662
- setHexColor: (color: string, district?: number | undefined) => void;
663
- metricDist: (hex: Hex) => number;
664
- cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
665
- edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
666
- _tile: import("./tile").MapTile | undefined;
667
- tile: Tile | undefined;
668
- _meep: import("./meeple").Meeple | undefined;
669
- meep: import("./meeple").Meeple | undefined;
670
- readonly occupied: [Tile | undefined, import("./meeple").Meeple | undefined] | undefined;
671
- toString: (color?: string) => string;
672
- rcspString: (color?: string) => string;
673
- setUnit: (unit: Tile, isMeep?: boolean) => void;
674
- unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
675
- xywh: (radius?: number, ewTopo?: boolean, row?: number, col?: number) => {
676
- x: number;
677
- y: number;
678
- w: number;
679
- h: number;
680
- dxdc: number;
681
- dydr: number;
682
- };
683
- readonly xywh0: {
684
- x: number;
685
- y: number;
686
- w: number;
687
- h: number;
688
- dxdc: number;
689
- dydr: number;
690
- };
691
- Aname: string;
692
- readonly iHex: IdHex;
693
- readonly rcs: string;
694
- readonly rowsp: string;
695
- readonly colsp: string;
696
- readonly rcsp: string;
697
- readonly rc_linear: number;
698
- _rcLinear?: number | undefined;
699
- _district: number | undefined;
700
- readonly isOnMap: boolean;
701
- _isLegal: boolean;
702
- readonly map: HexM<Hex>;
703
- readonly row: number;
704
- readonly col: number;
705
- readonly links: import("./hex").LINKS<import("./hex").Hex2>;
706
- metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
707
- readonly linkDirs: import("./hex-intfs").HexDir[];
708
- readonly linkHexes: (import("./hex").Hex2 | undefined)[];
709
- forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
710
- findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
711
- findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
712
- hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
713
- forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
714
- nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
715
- lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
716
- radialDist: (hex: Hex) => number;
717
- }>, vis?: boolean): {
718
- readonly implementsIHex2: true;
719
- readonly cont: import("./hex").HexCont;
720
- readonly radius: number;
721
- readonly hexShape: HexShape;
722
- readonly mapCont: import("./hex").MapCont;
723
- readonly markCont: Container;
724
- x: number;
725
- y: number;
726
- readonly scaleX: number;
727
- readonly scaleY: number;
728
- district: number | undefined;
729
- distColor: string;
730
- distText: Text;
731
- rcText: Text;
732
- constructorCode: (map: HexM<{
733
- readonly implementsIHex2: true;
734
- readonly cont: import("./hex").HexCont;
735
- readonly radius: number;
736
- readonly hexShape: HexShape;
737
- readonly mapCont: import("./hex").MapCont;
738
- readonly markCont: Container;
739
- x: number;
740
- y: number;
741
- readonly scaleX: number;
742
- readonly scaleY: number;
743
- district: number | undefined;
744
- distColor: string;
745
- distText: Text;
746
- rcText: Text;
747
- constructorCode: any;
748
- setRcText: (row: number, col: number, rcf?: number) => void;
749
- setDistText: (dText?: string, size?: number) => void;
750
- showText: (vis?: boolean) => void;
751
- makeLegalMark: () => import("./hex").LegalMark;
752
- legalMark: import("./hex").LegalMark;
753
- isLegal: boolean;
754
- initCont: (row: number, col: number) => void;
755
- reCache: (scale?: number) => void;
756
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
757
- setHexColor: (color: string, district?: number | undefined) => void;
758
- metricDist: (hex: Hex) => number;
759
- cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
760
- edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
761
- _tile: import("./tile").MapTile | undefined;
762
- tile: Tile | undefined;
763
- _meep: import("./meeple").Meeple | undefined;
764
- meep: import("./meeple").Meeple | undefined;
765
- readonly occupied: [Tile | undefined, import("./meeple").Meeple | undefined] | undefined;
766
- toString: (color?: string) => string;
767
- rcspString: (color?: string) => string;
768
- setUnit: (unit: Tile, isMeep?: boolean) => void;
769
- unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
770
- xywh: (radius?: number, ewTopo?: boolean, row?: number, col?: number) => {
771
- x: number;
772
- y: number;
773
- w: number;
774
- h: number;
775
- dxdc: number;
776
- dydr: number;
777
- };
778
- readonly xywh0: {
779
- x: number;
780
- y: number;
781
- w: number;
782
- h: number;
783
- dxdc: number;
784
- dydr: number;
785
- };
786
- Aname: string;
787
- readonly iHex: IdHex;
788
- readonly rcs: string;
789
- readonly rowsp: string;
790
- readonly colsp: string;
791
- readonly rcsp: string;
792
- readonly rc_linear: number;
793
- _rcLinear?: number | undefined;
794
- _district: number | undefined;
795
- readonly isOnMap: boolean;
796
- _isLegal: boolean;
797
- readonly map: HexM<Hex>;
798
- readonly row: number;
799
- readonly col: number;
800
- readonly links: import("./hex").LINKS<import("./hex").Hex2>;
801
- metaLinks: import("./hex").LINKS<import("./hex").Hex2>;
802
- readonly linkDirs: import("./hex-intfs").HexDir[];
803
- readonly linkHexes: (import("./hex").Hex2 | undefined)[];
804
- forEachLinkHex: (func: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir | undefined, hex0: import("./hex").Hex2) => unknown, inclCenter?: boolean) => void;
805
- findLinkHex: (pred: (hex: import("./hex").Hex2 | undefined, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex-intfs").HexDir | undefined;
806
- findInDir: (dir: import("./hex-intfs").HexDir, pred: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => boolean) => import("./hex").Hex2 | undefined;
807
- hexesInDir: (dir: import("./hex-intfs").HexDir, rv?: import("./hex").Hex2[]) => import("./hex").Hex2[];
808
- forEachHexDir: (func: (hex: import("./hex").Hex2, dir: import("./hex-intfs").HexDir, hex0: import("./hex").Hex2) => unknown) => void;
809
- nextHex: (dir: import("./hex-intfs").HexDir, ns?: number) => import("./hex").Hex2 | undefined;
810
- lastHex: (ds: import("./hex-intfs").HexDir) => import("./hex").Hex2;
811
- radialDist: (hex: Hex) => number;
812
- }>, row: number, col: number, dText?: string) => void;
813
- setRcText: (row: number, col: number, rcf?: number) => void;
814
- setDistText: (dText?: string, size?: number) => void;
815
- showText: (vis?: boolean) => void;
816
- makeLegalMark: () => import("./hex").LegalMark;
817
- legalMark: import("./hex").LegalMark;
818
- isLegal: boolean;
819
- initCont: (row: number, col: number) => void;
820
- reCache: (scale?: number) => void;
821
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
676
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
822
677
  setHexColor: (color: string, district?: number | undefined) => void;
823
678
  metricDist: (hex: Hex) => number;
824
679
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -879,12 +734,21 @@ export declare class Table extends Dispatcher {
879
734
  makeCircleButton(color?: string, rad?: number, c?: string, fs?: number): Container;
880
735
  /** @deprecated use UtilButton [from Ankh] */
881
736
  makeSquareButton(color: string | undefined, xywh: XYWH, c?: string, fs?: number): Container;
882
- /** @deprecated [legacy from hextowns] */
883
- makeRecycleHex(row?: number, col?: number, claz?: typeof RecycleHex): {
737
+ /**
738
+ * A newHex2 with the 'Recycle' image on top. [legacy from hextowns]
739
+ *
740
+ * Typically: invoke from layoutTable() or layoutTable2()
741
+ * @param row [TP.nHexes + 3.2] below the centerline
742
+ * @param col [0] toward the left edge
743
+ * @param name ['Recycle'] hex.Aname and name of image to use
744
+ * @param claz [RecycleHex]
745
+ * @returns
746
+ */
747
+ makeRecycleHex(row?: number, col?: number, name?: string, claz?: typeof RecycleHex): {
884
748
  readonly implementsIHex2: true;
885
749
  readonly cont: import("./hex").HexCont;
886
750
  readonly radius: number;
887
- readonly hexShape: HexShape;
751
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
888
752
  readonly mapCont: import("./hex").MapCont;
889
753
  readonly markCont: Container;
890
754
  x: number;
@@ -899,7 +763,7 @@ export declare class Table extends Dispatcher {
899
763
  readonly implementsIHex2: true;
900
764
  readonly cont: import("./hex").HexCont;
901
765
  readonly radius: number;
902
- readonly hexShape: HexShape;
766
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
903
767
  readonly mapCont: import("./hex").MapCont;
904
768
  readonly markCont: Container;
905
769
  x: number;
@@ -919,7 +783,7 @@ export declare class Table extends Dispatcher {
919
783
  isLegal: boolean;
920
784
  initCont: (row: number, col: number) => void;
921
785
  reCache: (scale?: number) => void;
922
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
786
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
923
787
  setHexColor: (color: string, district?: number | undefined) => void;
924
788
  metricDist: (hex: Hex) => number;
925
789
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -984,7 +848,7 @@ export declare class Table extends Dispatcher {
984
848
  isLegal: boolean;
985
849
  initCont: (row: number, col: number) => void;
986
850
  reCache: (scale?: number) => void;
987
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
851
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
988
852
  setHexColor: (color: string, district?: number | undefined) => void;
989
853
  metricDist: (hex: Hex) => number;
990
854
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1084,7 +948,7 @@ export declare class Table extends Dispatcher {
1084
948
  readonly implementsIHex2: true;
1085
949
  readonly cont: import("./hex").HexCont;
1086
950
  readonly radius: number;
1087
- readonly hexShape: HexShape;
951
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1088
952
  readonly mapCont: import("./hex").MapCont;
1089
953
  readonly markCont: Container;
1090
954
  x: number;
@@ -1099,7 +963,7 @@ export declare class Table extends Dispatcher {
1099
963
  readonly implementsIHex2: true;
1100
964
  readonly cont: import("./hex").HexCont;
1101
965
  readonly radius: number;
1102
- readonly hexShape: HexShape;
966
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1103
967
  readonly mapCont: import("./hex").MapCont;
1104
968
  readonly markCont: Container;
1105
969
  x: number;
@@ -1119,7 +983,7 @@ export declare class Table extends Dispatcher {
1119
983
  isLegal: boolean;
1120
984
  initCont: (row: number, col: number) => void;
1121
985
  reCache: (scale?: number) => void;
1122
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
986
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1123
987
  setHexColor: (color: string, district?: number | undefined) => void;
1124
988
  metricDist: (hex: Hex) => number;
1125
989
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1184,7 +1048,7 @@ export declare class Table extends Dispatcher {
1184
1048
  isLegal: boolean;
1185
1049
  initCont: (row: number, col: number) => void;
1186
1050
  reCache: (scale?: number) => void;
1187
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1051
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1188
1052
  setHexColor: (color: string, district?: number | undefined) => void;
1189
1053
  metricDist: (hex: Hex) => number;
1190
1054
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1257,7 +1121,7 @@ export declare class Table extends Dispatcher {
1257
1121
  readonly implementsIHex2: true;
1258
1122
  readonly cont: import("./hex").HexCont;
1259
1123
  readonly radius: number;
1260
- readonly hexShape: HexShape;
1124
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1261
1125
  readonly mapCont: import("./hex").MapCont;
1262
1126
  readonly markCont: Container;
1263
1127
  x: number;
@@ -1272,7 +1136,7 @@ export declare class Table extends Dispatcher {
1272
1136
  readonly implementsIHex2: true;
1273
1137
  readonly cont: import("./hex").HexCont;
1274
1138
  readonly radius: number;
1275
- readonly hexShape: HexShape;
1139
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1276
1140
  readonly mapCont: import("./hex").MapCont;
1277
1141
  readonly markCont: Container;
1278
1142
  x: number;
@@ -1292,7 +1156,7 @@ export declare class Table extends Dispatcher {
1292
1156
  isLegal: boolean;
1293
1157
  initCont: (row: number, col: number) => void;
1294
1158
  reCache: (scale?: number) => void;
1295
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1159
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1296
1160
  setHexColor: (color: string, district?: number | undefined) => void;
1297
1161
  metricDist: (hex: Hex) => number;
1298
1162
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1357,7 +1221,7 @@ export declare class Table extends Dispatcher {
1357
1221
  isLegal: boolean;
1358
1222
  initCont: (row: number, col: number) => void;
1359
1223
  reCache: (scale?: number) => void;
1360
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1224
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1361
1225
  setHexColor: (color: string, district?: number | undefined) => void;
1362
1226
  metricDist: (hex: Hex) => number;
1363
1227
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1446,7 +1310,7 @@ export declare class Table extends Dispatcher {
1446
1310
  readonly implementsIHex2: true;
1447
1311
  readonly cont: import("./hex").HexCont;
1448
1312
  readonly radius: number;
1449
- readonly hexShape: HexShape;
1313
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1450
1314
  readonly mapCont: import("./hex").MapCont;
1451
1315
  readonly markCont: Container;
1452
1316
  x: number;
@@ -1461,7 +1325,7 @@ export declare class Table extends Dispatcher {
1461
1325
  readonly implementsIHex2: true;
1462
1326
  readonly cont: import("./hex").HexCont;
1463
1327
  readonly radius: number;
1464
- readonly hexShape: HexShape;
1328
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1465
1329
  readonly mapCont: import("./hex").MapCont;
1466
1330
  readonly markCont: Container;
1467
1331
  x: number;
@@ -1481,7 +1345,7 @@ export declare class Table extends Dispatcher {
1481
1345
  isLegal: boolean;
1482
1346
  initCont: (row: number, col: number) => void;
1483
1347
  reCache: (scale?: number) => void;
1484
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1348
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1485
1349
  setHexColor: (color: string, district?: number | undefined) => void;
1486
1350
  metricDist: (hex: Hex) => number;
1487
1351
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1546,7 +1410,7 @@ export declare class Table extends Dispatcher {
1546
1410
  isLegal: boolean;
1547
1411
  initCont: (row: number, col: number) => void;
1548
1412
  reCache: (scale?: number) => void;
1549
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1413
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1550
1414
  setHexColor: (color: string, district?: number | undefined) => void;
1551
1415
  metricDist: (hex: Hex) => number;
1552
1416
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1616,7 +1480,7 @@ export declare class Table extends Dispatcher {
1616
1480
  readonly implementsIHex2: true;
1617
1481
  readonly cont: import("./hex").HexCont;
1618
1482
  readonly radius: number;
1619
- readonly hexShape: HexShape;
1483
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1620
1484
  readonly mapCont: import("./hex").MapCont;
1621
1485
  readonly markCont: Container;
1622
1486
  x: number;
@@ -1631,7 +1495,7 @@ export declare class Table extends Dispatcher {
1631
1495
  readonly implementsIHex2: true;
1632
1496
  readonly cont: import("./hex").HexCont;
1633
1497
  readonly radius: number;
1634
- readonly hexShape: HexShape;
1498
+ readonly hexShape: import("@thegraid/easeljs-lib").Paintable;
1635
1499
  readonly mapCont: import("./hex").MapCont;
1636
1500
  readonly markCont: Container;
1637
1501
  x: number;
@@ -1651,7 +1515,7 @@ export declare class Table extends Dispatcher {
1651
1515
  isLegal: boolean;
1652
1516
  initCont: (row: number, col: number) => void;
1653
1517
  reCache: (scale?: number) => void;
1654
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1518
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1655
1519
  setHexColor: (color: string, district?: number | undefined) => void;
1656
1520
  metricDist: (hex: Hex) => number;
1657
1521
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1716,7 +1580,7 @@ export declare class Table extends Dispatcher {
1716
1580
  isLegal: boolean;
1717
1581
  initCont: (row: number, col: number) => void;
1718
1582
  reCache: (scale?: number) => void;
1719
- makeHexShape: (shape?: Constructor<HexShape>) => HexShape;
1583
+ makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
1720
1584
  setHexColor: (color: string, district?: number | undefined) => void;
1721
1585
  metricDist: (hex: Hex) => number;
1722
1586
  cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, point?: import("@thegraid/easeljs-module").Point, rad?: number) => import("@thegraid/easeljs-module").Point;
@@ -1 +1 @@
1
- {"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../src/table.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../src/table.ts"],"names":[],"mappings":"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"}