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