This experiment is an extension of the mesh triangulation v4, This improves on the sharpness and detail and removes the image stretching by adding more triangle to the bitmap. A drawback is that this increases the amount of matrix calculations....
This experiment is an extension of the mesh triangulation v4. I added a few dots (you can drage them to distort the bitmap) at the 4 corners of the bitmap, The bitmap skew is a transformation matrix. applied to the top and bottom triangles. Each...
This experiment is an extension of the mesh triangulation v0 post. I added a few dot objects (you won't see them, they are only variables) at the 4 corners of the bitmap and moved them around a few pixels in order to create a skew. The bitmap...
Triangulation is the division of a surface or plane polygon into a set of triangles, usually with the restriction that each triangle side is entirely shared by two adjacent triangles. I have dealt with the topic distorting bitmaps before which lead...
This experiment is an extension of the mesh triangulation v0 post. I added a few dot objects (you won't see them, they are only variables) at the 4 corners of the bitmap and moved them around a few pixels in order to create a skew. The bitmap...
Bitmap distortion is not always about triangulation. I had used the chop the image long rectangles technique, and then there was the bitmapData skew to create the I-Tunes cover flow experiment. Triangulation on the other hand, is something that enables...
Looking back at an older post I will simplify the process mostly on relying on the grid. Finally triangulation is made out of taking small rectangles and dividing them up into triangles. The goal of this post is to draw rectangles using the drawing.
Looking into triangulating a rectangular bitmap, I quickly ran into complexity . I am trying to accomplish image distortion by cutting our bitmaps into thin triangular slices. Each triangle is dawn using the drawing API and the corresponding...
Triangulation is the division of a surface or plane polygon into a set of triangles, usually with the restriction that each triangle side is entirely shared by two adjacent triangles. I have dealt with the topic distorting bitmaps before which lead...
I used the bitmapData draw method to take snapshots of the light. In essece, I am converting the effect into a bitmap image. This results in decreasing the amount of total vectors on stage (sine they are being drawn through the drawing API)....