Uses of Class
com.jhlabs.image.WarpGrid

Packages that use WarpGrid
com.jhlabs.image   
 

Uses of WarpGrid in com.jhlabs.image
 

Methods in com.jhlabs.image that return WarpGrid
 WarpGrid WarpFilter.getDestGrid()
          Get the destination warp grid.
 WarpGrid WarpFilter.getSourceGrid()
          Get the source warp grid.
 

Methods in com.jhlabs.image with parameters of type WarpGrid
 void WarpGrid.lerp(float t, WarpGrid destination, WarpGrid intermediate)
           
 void WarpFilter.morph(int[] srcPixels, int[] destPixels, int[] outPixels, WarpGrid srcGrid, WarpGrid destGrid, int width, int height, float t)
           
 void WarpFilter.setDestGrid(WarpGrid destGrid)
          Set the destination warp grid.
 void WarpFilter.setSourceGrid(WarpGrid sourceGrid)
          Set the source warp grid.
 void WarpGrid.warp(int[] inPixels, int cols, int rows, WarpGrid sourceGrid, WarpGrid destGrid, int[] outPixels)
           
 

Constructors in com.jhlabs.image with parameters of type WarpGrid
WarpFilter(WarpGrid sourceGrid, WarpGrid destGrid)
          Create a WarpFilter with two warp grids.