point2line
index
 
Name y ( )
Description The y component of the vector
Syntax
y;
Usage Web & Application
Related x
Examples
import point2line.*;

Vect2 velocity = new Vect2( 0, 5 );

println( velocity.y ); // prints "5.0"

velocity.y = 2;

println( velocity.y ); // prints "2.0"