Ejemplo n.º 1
0
 public void set(CVector3f theVector) {
   x = theVector.x();
   y = theVector.y();
   z = theVector.z();
 }
Ejemplo n.º 2
0
 public CVector3f(CVector3f theVector3f) {
   x = theVector3f.x();
   y = theVector3f.y();
   z = theVector3f.z();
 }