Freestyle: minor docstring fixes.

This commit is contained in:
2014-07-13 02:12:22 +09:00
parent 0fc05c1c03
commit c7ba6eaacc
2 changed files with 3 additions and 3 deletions

View File

@@ -268,7 +268,7 @@ void SVertex_mathutils_register_callback()
PyDoc_STRVAR(SVertex_point_3d_doc, PyDoc_STRVAR(SVertex_point_3d_doc,
"The 3D coordinates of the SVertex.\n" "The 3D coordinates of the SVertex.\n"
"\n" "\n"
":type: mathutils.Vector"); ":type: :class:`mathutils.Vector`");
static PyObject *SVertex_point_3d_get(BPy_SVertex *self, void *UNUSED(closure)) static PyObject *SVertex_point_3d_get(BPy_SVertex *self, void *UNUSED(closure))
{ {
@@ -291,7 +291,7 @@ static int SVertex_point_3d_set(BPy_SVertex *self, PyObject *value, void *UNUSED
PyDoc_STRVAR(SVertex_point_2d_doc, PyDoc_STRVAR(SVertex_point_2d_doc,
"The projected 3D coordinates of the SVertex.\n" "The projected 3D coordinates of the SVertex.\n"
"\n" "\n"
":type: mathutils.Vector"); ":type: :class:`mathutils.Vector`");
static PyObject *SVertex_point_2d_get(BPy_SVertex *self, void *UNUSED(closure)) static PyObject *SVertex_point_2d_get(BPy_SVertex *self, void *UNUSED(closure))
{ {

View File

@@ -116,7 +116,7 @@ PyDoc_STRVAR(orientedViewEdgeIterator_object_doc,
"value) currently pointed to by this iterator. If the boolean value is true,\n" "value) currently pointed to by this iterator. If the boolean value is true,\n"
"the ViewEdge is incoming.\n" "the ViewEdge is incoming.\n"
"\n" "\n"
":type: (:class:`directedViewEdge`, bool)"); ":type: (:class:`ViewEdge`, bool)");
static PyObject *orientedViewEdgeIterator_object_get(BPy_orientedViewEdgeIterator *self, void *UNUSED(closure)) static PyObject *orientedViewEdgeIterator_object_get(BPy_orientedViewEdgeIterator *self, void *UNUSED(closure))
{ {