Vector

public void Vector()

Construct the vector with all components as 0.


public void Vector(int x, int y, int z)

Construct the vector with provided integer components.

Parameters

x

X component

y

Y component

z

Z component


public void Vector(double x, double y, double z)

Construct the vector with provided double components.

Parameters

x

X component

y

Y component

z

Z component


public void Vector(float x, float y, float z)

Construct the vector with provided float components.

Parameters

x

X component

y

Y component

z

Z component