i would like a python script to draw in 3D a triangle bezier patch
this is an old problem and there must be some old script available to do this somehwere!
Thanks for any help
i would like a python script to draw in 3D a triangle bezier patch
this is an old problem and there must be some old script available to do this somehwere!
Thanks for any help
OpenGL RedBook, "Chapter 12 Evaluators and NURBS". C examples are here. But I really don't think you'll be able to use it on triangles, only on quads. If you want to go through the trouble of tesselating triangle, pick spline formula from wikipedia, and try to implement it yourself.