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

Vect2 velocity = new Vect2( 5, 0 );

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

velocity.x = 2;

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