Numerical Digitize¶
Numerical Digitize (ND) provide a table where you can directly input coordinates to produce geometry.

For developper: You can import tools from python and play with.
Example:
>> from CADDigitize.tools import regularpolygon
>> my_geom = regularpolygon.RegularPolygon.getRPolygon2Corners(QgsPoint(0,0), QgsPoint(5,5), 8)
>> my_geom.exportToWkt(2)
>> u'POLYGON((5 12.07,0 17.07,-7.07 17.07,-12.07 12.07,-12.07 5,-7.07 0,0 0,5 5,5 12.07))'