Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/mathutils/mathutils_Euler.c
| Show First 20 Lines • Show All 683 Lines • ▼ Show 20 Lines | |||||
| }; | }; | ||||
| /* ------------------PY_OBECT DEFINITION-------------------------- */ | /* ------------------PY_OBECT DEFINITION-------------------------- */ | ||||
| PyDoc_STRVAR(euler_doc, | PyDoc_STRVAR(euler_doc, | ||||
| ".. class:: Euler(angles, order='XYZ')\n" | ".. class:: Euler(angles, order='XYZ')\n" | ||||
| "\n" | "\n" | ||||
| " This object gives access to Eulers in Blender.\n" | " This object gives access to Eulers in Blender.\n" | ||||
| "\n" | "\n" | ||||
| " .. seealso:: `Euler angles <https://en.wikipedia.org/wiki/Euler_angles>`__ on Wikipedia.\n" | |||||
Blendify: Use anonymous URLs https://stackoverflow.com/questions/27420317/restructured-text-rst-http… | |||||
| "\n" | |||||
| " :param angles: Three angles, in radians.\n" | " :param angles: Three angles, in radians.\n" | ||||
| " :type angles: 3d vector\n" | " :type angles: 3d vector\n" | ||||
| " :param order: Optional order of the angles, a permutation of ``XYZ``.\n" | " :param order: Optional order of the angles, a permutation of ``XYZ``.\n" | ||||
| " :type order: str\n" | " :type order: str\n" | ||||
| ); | ); | ||||
| PyTypeObject euler_Type = { | PyTypeObject euler_Type = { | ||||
| PyVarObject_HEAD_INIT(NULL, 0) | PyVarObject_HEAD_INIT(NULL, 0) | ||||
| "Euler", /* tp_name */ | "Euler", /* tp_name */ | ||||
| ▲ Show 20 Lines • Show All 127 Lines • Show Last 20 Lines | |||||
Use anonymous URLs https://stackoverflow.com/questions/27420317/restructured-text-rst-http-links-underscore-vs-use