hi
how can i draw a an extruded circle from vertex a ( x1, y1, z1 ) to vertex b ( x2, y2 , z2 ) ?
so i draw the circle at vertex a:
bpy.ops.mesh.primitive_circle_add(vertices=16, radius=0.02, fill=True, view_align=False, enter_editmode=False, location=( x1, y1, z1 ), rotation=(0.0, 0.0, 0.0))
but how do i extrude to vertex b ?
thanks for any help
sc3*2