conform to docstring format

This commit is contained in:
Martin 2020-08-10 11:33:01 -07:00
parent 817753bd82
commit 75899f0c4e

View File

@ -15,16 +15,17 @@ class Vector(QtGui.QVector3D):
""" """
Handle additional constructions of a Vector Handle additional constructions of a Vector
Parameters ============== ================================================================================================
---------- **Arguments:**
args *args* Could be any of:
Could be any of: * 3 numerics
* 3 numerics * 2 numerics (`0` assumed for z)
* 2 numerics (`0` assumed for z) * Either of the previous in a list-like collection
* Either of the previous in a list-like collection * 1 QSizeF (`0` assumed for z)
* 1 QSizeF (`0` assumed for z) * 1 QPointF (`0` assumed for z)
* 1 QPointF (`0` assumed for z) * Any other valid QVector3D init args.
* Any other valid QVector3D init args. ----------------------------------------------------------------------------------------------------------------
============== ================================================================================================
""" """
initArgs = args initArgs = args
if len(args) == 1: if len(args) == 1: