If you are using the included XML noise configuration system, Translate modules can be declared as
<translate x="offset" y="offset" z="offset"> <source module /> </translate>
Omitting the x, y, or z attribute will leave that axis un-translated.
5859606162636465
* @return a Translate module. * @throws BuilderException * if the source module has not been provided. */ public Translate createModule () throws BuilderException { return new Translate (getSource ().createModule (), getX (), getY (), getZ ()); }