trait PowMethods extends MethodExtensions[Tile]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PowMethods
  2. MethodExtensions
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def self: Tile
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def **(rs: Traversable[Tile]): Tile

    Pow the values of each cell in each raster.

  2. def **(r: Tile): Tile

    Pow the values of each cell in each raster.

  3. def **(d: Double): Tile

    Pow each value of a raster by a double constant value.

  4. def **(i: Int): Tile

    Pow each value of the raster by a constant value.

  5. def **:(d: Double): Tile

    Pow a double constant value by each cell value.

  6. def **:(i: Int): Tile

    Pow a constant value by each cell value.

  7. def localPow(rs: Traversable[Tile]): Tile

    Pow the values of each cell in each raster.

  8. def localPow(r: Tile): Tile

    Pow the values of each cell in each raster.

  9. def localPow(d: Double): Tile

    Pow each value of a raster by a double constant value.

  10. def localPow(i: Int): Tile

    Pow each value of the raster by a constant value.

  11. def localPowValue(d: Double): Tile

    Pow a double constant value by each cell value.

  12. def localPowValue(i: Int): Tile

    Pow a constant value by each cell value.