One of the true powers of PaperVision 3D is getting down and dirty at the geometry level and creating custom meshes. Doing this requires knowledge of what a mesh consists of and how to construct a TriangularMesh. Basically a mesh consists of two things: Vertices and Faces. Vertices are basically the corner points of a [...]
Read the rest of this post »
For this experiment I took some code I had written for a recent project and repuprosed it in a more artistic and abstract manner. The idea is basically to loop for a specified distance and create points, which are later connected into a continuous cubic bezier line. Here is the code: public function createLoopingLine(distance:Number):void { [...]
Read the rest of this post »