{"turbulence1",(PyCFunction)Noise_turbulence1,METH_VARARGS,"(float arg, float freq, float amp, unsigned oct=4))Returns a noise value for a 1D element"},
{"turbulence2",(PyCFunction)Noise_turbulence2,METH_VARARGS,"([x, y], float freq, float amp, unsigned oct=4)))Returns a noise value for a 2D element"},
{"turbulence3",(PyCFunction)Noise_turbulence3,METH_VARARGS,"([x, y, z], float freq, float amp, unsigned oct=4)))Returns a noise value for a 3D element"},
{"smoothNoise1",(PyCFunction)Noise_smoothNoise1,METH_VARARGS,"(float arg))Returns a smooth noise value for a 1D element "},
{"smoothNoise2",(PyCFunction)Noise_smoothNoise2,METH_VARARGS,"([x, y]))Returns a smooth noise value for a 2D element "},
{"smoothNoise3",(PyCFunction)Noise_smoothNoise3,METH_VARARGS,"([x, y, z))Returns a smooth noise value for a 3D element "},
{NULL,NULL,0,NULL}
};
/*-----------------------BPy_Noise type definition ------------------------------*/
PyTypeObjectNoise_Type={
PyObject_HEAD_INIT(NULL)
0,/* ob_size */
"Noise",/* tp_name */
sizeof(BPy_Noise),/* tp_basicsize */
0,/* tp_itemsize */
/* methods */
(destructor)Noise___dealloc__,/* tp_dealloc */
NULL,/* printfunc tp_print; */
NULL,/* getattrfunc tp_getattr; */
NULL,/* setattrfunc tp_setattr; */
NULL,/* tp_compare */
(reprfunc)Noise___repr__,/* tp_repr */
/* Method suites for standard classes */
NULL,/* PyNumberMethods *tp_as_number; */
NULL,/* PySequenceMethods *tp_as_sequence; */
NULL,/* PyMappingMethods *tp_as_mapping; */
/* More standard operations (here for binary compatibility) */
NULL,/* hashfunc tp_hash; */
NULL,/* ternaryfunc tp_call; */
NULL,/* reprfunc tp_str; */
NULL,/* getattrofunc tp_getattro; */
NULL,/* setattrofunc tp_setattro; */
/* Functions to access object as input/output buffer */
NULL,/* PyBufferProcs *tp_as_buffer; */
/*** Flags to define presence of optional/expanded features ***/
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE,/* long tp_flags; */
NULL,/* char *tp_doc; Documentation string */
/*** Assigned meaning in release 2.0 ***/
/* call function for all accessible objects */
NULL,/* traverseproc tp_traverse; */
/* delete references to contained objects */
NULL,/* inquiry tp_clear; */
/*** Assigned meaning in release 2.1 ***/
/*** rich comparisons ***/
NULL,/* richcmpfunc tp_richcompare; */
/*** weak reference enabler ***/
0,/* long tp_weaklistoffset; */
/*** Added in release 2.2 ***/
/* Iterators */
NULL,/* getiterfunc tp_iter; */
NULL,/* iternextfunc tp_iternext; */
/*** Attribute descriptor and subclassing stuff ***/