@@ -817,67 +817,3 @@ Common.Color.PageHighlight = {
817
817
Shape : Common . Color . fromRGBA ( [ 96 , 82 , 177 , 0.8 ] ) ,
818
818
ShapeMargin : Common . Color . fromRGBA ( [ 96 , 82 , 127 , .6 ] )
819
819
} ;
820
-
821
- Common . Color . Generator = class {
822
- /**
823
- * @param {!{min: number, max: number}|number= } hueSpace
824
- * @param {!{min: number, max: number, count: (number|undefined)}|number= } satSpace
825
- * @param {!{min: number, max: number, count: (number|undefined)}|number= } lightnessSpace
826
- * @param {!{min: number, max: number, count: (number|undefined)}|number= } alphaSpace
827
- */
828
- constructor ( hueSpace , satSpace , lightnessSpace , alphaSpace ) {
829
- this . _hueSpace = hueSpace || { min : 0 , max : 360 } ;
830
- this . _satSpace = satSpace || 67 ;
831
- this . _lightnessSpace = lightnessSpace || 80 ;
832
- this . _alphaSpace = alphaSpace || 1 ;
833
- /** @type {!Map<string, string> } */
834
- this . _colors = new Map ( ) ;
835
- }
836
-
837
- /**
838
- * @param {string } id
839
- * @param {string } color
840
- */
841
- setColorForID ( id , color ) {
842
- this . _colors . set ( id , color ) ;
843
- }
844
-
845
- /**
846
- * @param {string } id
847
- * @return {string }
848
- */
849
- colorForID ( id ) {
850
- var color = this . _colors . get ( id ) ;
851
- if ( ! color ) {
852
- color = this . _generateColorForID ( id ) ;
853
- this . _colors . set ( id , color ) ;
854
- }
855
- return color ;
856
- }
857
-
858
- /**
859
- * @param {string } id
860
- * @return {string }
861
- */
862
- _generateColorForID ( id ) {
863
- var hash = String . hashCode ( id ) ;
864
- var h = this . _indexToValueInSpace ( hash , this . _hueSpace ) ;
865
- var s = this . _indexToValueInSpace ( hash >> 8 , this . _satSpace ) ;
866
- var l = this . _indexToValueInSpace ( hash >> 16 , this . _lightnessSpace ) ;
867
- var a = this . _indexToValueInSpace ( hash >> 24 , this . _alphaSpace ) ;
868
- return `hsla(${ h } , ${ s } %, ${ l } %, ${ a } )` ;
869
- }
870
-
871
- /**
872
- * @param {number } index
873
- * @param {!{min: number, max: number, count: (number|undefined)}|number } space
874
- * @return {number }
875
- */
876
- _indexToValueInSpace ( index , space ) {
877
- if ( typeof space === 'number' )
878
- return space ;
879
- var count = space . count || space . max - space . min ;
880
- index %= count ;
881
- return space . min + Math . floor ( index / ( count - 1 ) * ( space . max - space . min ) ) ;
882
- }
883
- } ;
0 commit comments