object PaintScale

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PaintScale
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. lazy val BlackToWhite: Array[Color]

    Produces a gradient from black (low) to white (high)

  5. lazy val BlueToRed: Array[Color]

    Produces a gradient from blue (low) to red (high)

  6. lazy val GreenYelloOrangeRed: Array[Color]

    Produces a gradient through green, yellow, orange, red

  7. lazy val Heat: Array[Color]

    Produces a different gradient for hot things (black, brown, orange, white)

  8. lazy val Hot: Array[Color]

    Produces a gradient for hot things (black, red, orange, yellow, white)

  9. lazy val MaroonToGold: Array[Color]

    Produces a gradient using the University of Minnesota's school colors, from maroon (low) to gold (high)

  10. lazy val Rainbow: Array[Color]

    Produces a gradient through the rainbow: violet, blue, green, yellow, orange, red

  11. lazy val RedOrangeYellow: Array[Color]

    Produces a gradient through red, orange, yellow

  12. lazy val RedToGreen: Array[Color]

    Produces a gradient from red (low) to green (high)

  13. lazy val WhiteToBlack: Array[Color]

    Produces a gradient from white (low) to black (high)

  14. val aliceblue: Color
  15. val antiquewhite: Color
  16. val aqua: Color
  17. val aquamarine: Color
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. val azure: Color
  20. val beige: Color
  21. val bisque: Color
  22. val black: Color
  23. val blanchedalmond: Color
  24. val blue: Color
  25. val blueviolet: Color
  26. val brown: Color
  27. val burlywood: Color
  28. val cadetblue: Color
  29. val chartreuse: Color
  30. val chocolate: Color
  31. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def convertToColor(colorcode: String): Color

    Convert a color description string into a color suitable for plotting.

    Convert a color description string into a color suitable for plotting.

    colorcode

    A string that is a single character (like "k"), a name (like "black"), "r,g,b" or, "[r,g,b]"

  33. val coral: Color
  34. val cornflowerblue: Color
  35. val cornsilk: Color
  36. def createGradient(one: Color, two: Color, numSteps: Int): Array[Color]

    Creates an array of Color objects for use as a gradient, using a linear interpolation between the two specified colors.

    Creates an array of Color objects for use as a gradient, using a linear interpolation between the two specified colors.

    From http://www.mbeckler.org/heatMap/heatMap.html

    one

    Color used for the bottom of the gradient

    two

    Color used for the top of the gradient

    numSteps

    The number of steps in the gradient. 250 is a good number.

  37. def createMultiGradient(colors: Array[Color], numSteps: Int): Array[Color]

    Creates an array of Color objects for use as a gradient, using an array of Color objects.

    Creates an array of Color objects for use as a gradient, using an array of Color objects. It uses a linear interpolation between each pair of points.

    From http://www.mbeckler.org/heatMap/heatMap.html

    colors

    An array of Color objects used for the gradient. The Color at index 0 will be the lowest color.

    numSteps

    The number of steps in the gradient. 250 is a good number.

  38. val crimson: Color
  39. val cyan: Color
  40. val darkblue: Color
  41. val darkcyan: Color
  42. val darkgoldenrod: Color
  43. val darkgray: Color
  44. val darkgreen: Color
  45. val darkgrey: Color
  46. val darkkhaki: Color
  47. val darkmagenta: Color
  48. val darkolivegreen: Color
  49. val darkorange: Color
  50. val darkorchid: Color
  51. val darkred: Color
  52. val darksalmon: Color
  53. val darkseagreen: Color
  54. val darkslateblue: Color
  55. val darkslategray: Color
  56. val darkslategrey: Color
  57. val darkturquoise: Color
  58. val darkviolet: Color
  59. val deeppink: Color
  60. val deepskyblue: Color
  61. val dimgray: Color
  62. val dimgrey: Color
  63. val dodgerblue: Color
  64. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  66. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  67. val firebrick: Color
  68. val floralwhite: Color
  69. val forestgreen: Color
  70. val fuchsia: Color
  71. val gainsboro: Color
  72. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  73. val ghostwhite: Color
  74. val gold: Color
  75. val goldenrod: Color
  76. implicit def gradientTuple[T](vLowerUpper: (T, T))(implicit view: (T) ⇒ Double): GradientPaintScale[T]

    Creates a GradientPaintScale automatically for the given range.

  77. val gray: Color
  78. val green: Color
  79. val greenyellow: Color
  80. val grey: Color
  81. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  82. val honeydew: Color
  83. val hotpink: Color
  84. val indianred: Color
  85. val indigo: Color
  86. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  87. val ivory: Color
  88. val khaki: Color
  89. val lavender: Color
  90. val lavenderblush: Color
  91. val lawngreen: Color
  92. val lemonchiffon: Color
  93. val lightblue: Color
  94. val lightcoral: Color
  95. val lightcyan: Color
  96. val lightgoldenrodyellow: Color
  97. val lightgray: Color
  98. val lightgreen: Color
  99. val lightgrey: Color
  100. val lightpink: Color
  101. val lightsalmon: Color
  102. val lightseagreen: Color
  103. val lightskyblue: Color
  104. val lightslategray: Color
  105. val lightslategrey: Color
  106. val lightsteelblue: Color
  107. val lightyellow: Color
  108. val lime: Color
  109. val limegreen: Color
  110. val linen: Color
  111. implicit def literalColorMap[T](map: PartialFunction[T, Paint]): CategoricalPaintScale[T]

    Creates a CategoricalPaintScale from the provided partial function.

  112. val magenta: Color
  113. val maroon: Color
  114. val mediumaquamarine: Color
  115. val mediumblue: Color
  116. val mediumorchid: Color
  117. val mediumpurple: Color
  118. val mediumseagreen: Color
  119. val mediumslateblue: Color
  120. val mediumspringgreen: Color
  121. val mediumturquoise: Color
  122. val mediumvioletred: Color
  123. val midnightblue: Color
  124. val mintcream: Color
  125. val mistyrose: Color
  126. val moccasin: Color
  127. val nanPaint: TexturePaint

    For painting NaN.

  128. val navajowhite: Color
  129. val navy: Color
  130. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  131. final def notify(): Unit
    Definition Classes
    AnyRef
  132. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  133. val oldlace: Color
  134. val olive: Color
  135. val olivedrab: Color
  136. val orange: Color
  137. val orangered: Color
  138. val orchid: Color
  139. val palegoldenrod: Color
  140. val palegreen: Color
  141. val paleturquoise: Color
  142. val palevioletred: Color
  143. val papayawhip: Color
  144. val peachpuff: Color
  145. val peru: Color
  146. val pink: Color
  147. val plum: Color
  148. val powderblue: Color
  149. val purple: Color
  150. val red: Color
  151. val rosybrown: Color
  152. val royalblue: Color
  153. val saddlebrown: Color
  154. val salmon: Color
  155. val sandybrown: Color
  156. val seagreen: Color
  157. val seashell: Color
  158. val sienna: Color
  159. val silver: Color
  160. val skyblue: Color
  161. val slateblue: Color
  162. val slategray: Color
  163. val slategrey: Color
  164. val snow: Color
  165. val springgreen: Color
  166. val steelblue: Color
  167. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  168. val tan: Color
  169. val teal: Color
  170. val thistle: Color
  171. def toString(): String
    Definition Classes
    AnyRef → Any
  172. val tomato: Color
  173. val transparent: Color
  174. val turquoise: Color
  175. val violet: Color
  176. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  177. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  178. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  179. val wheat: Color
  180. val white: Color
  181. val whitesmoke: Color
  182. val yellow: Color
  183. val yellowgreen: Color
  184. object Category10

    The Category10 palette from Protovis http://vis.stanford.edu/protovis/docs/color.html

  185. object Category20

    The Category20 palette from Protovis http://vis.stanford.edu/protovis/docs/color.html

Inherited from AnyRef

Inherited from Any

Ungrouped