001 package railo.runtime.functions.image; 002 003 import railo.runtime.PageContext; 004 import railo.runtime.img.filter.WarpGrid; 005 import railo.runtime.op.Caster; 006 007 public class ImageFilterWarpGrid { 008 009 public static Object call(PageContext pc, double rows, double cols, double width, double height) { 010 return new WarpGrid(Caster.toIntValue(rows), Caster.toIntValue(cols), Caster.toIntValue(width), Caster.toIntValue(height)); 011 } 012 }