Lights, Material, Textures
In order to make a graphic look more realistic, you should add lights, texture and materials. LIGHTS: (Information gotten from...
What is a stack?
Here is a brief explanation of stack: Plan B) (Information gotten from http://interactivepython.org/) The Stack Abstract Data Type The...


Scale, Translate, Rotate
ROTATE "The rotate() function rotates the coordinate system so that shapes can be drawn to the screen at an angle. It has one parameter...
Animations:
This are some easy animations for your programs: import remixlab.bias.event.*; import remixlab.bias.event.shortcut.*; import...
Proscene: a different view
What is proscene? "Proscene (pronounced similar as the Czech word "prosím" which means "please") is a java library package which provides...


How to use processing: The basics
In this post we will learn a little bit about the programming of computer graphics. In processing you can get to do something like this:...
Processing
What is processing? "Processing is a programming language, development environment, and online community."(Processing) But, that does not...


Download Processing!!
Now that a new language is in this page, you can download processing! Here is the link for that: Download Processing NOW


Functions in C
This one is a program in C using functions: #include <stdio.h> void suma(int array[],int size); int main() { int N=10; int A[N];...
Methods in java
Here is a useful video that explains the methods in the java language programming. #functions