I did many primitive using Bmesh
but this one is giving an error
values are :
vid = 0 n1 = 0.0 XC = 5.0 YC = 0.0 ZC = 0.0
Traceback (most recent call last):
AttributeError: ‘float’ object has no attribute ‘verts’
all the values are float and still getting this error !
verts.append(bm.verts.new((XC,YC,ZC))) # Add vertices
if hasattr(bm.verts, "ensure_lookup_table"):
bm.verts.ensure_lookup_table()
anyone can tell me what could be causing this error ?
thanks
happy bl