0

So I have a new project that requires doing a lot of Bézier surface modeling. I am selecting a way for rendering data using flash. I need to be capabele to render a basier surface not using any big flash 3d engine in a maner as easy as possible a bezier surface that would cross for example such array of points:

{1,1,1}
{1,2,3}
{1,3,3}
{2,4,5}
{2,5,6}
{4,4,4}

So looks like an easy task for an engene I hope. So how to do such thing with flash?

BTW: (I use flex builder 3 to do flash development)

tshepang
  • 12,111
  • 21
  • 91
  • 136
Rella
  • 65,003
  • 109
  • 363
  • 636

2 Answers2

3

Check out these interesting posts on the MiauMiau Labs Blog:

  1. NURBS in Flash (part 1)
  2. NURBS in Flash (part 2)

NURBS in Flash

HTH

George Profenza
  • 50,687
  • 19
  • 144
  • 218
  • Grate one!!!=) +1 and I woulg given +1 for point that its generaly pure AS no special libs like PV3d or Alternativa... – Rella Dec 10 '10 at 20:14
1

I just wrote a blog post of warping images using a 2d bezier patch http://fatlinesofcode.philipandrews.org/2011/02/20/warping-bitmaps-with-a-bezier-surface/

phil
  • 11
  • 1