move method

Sp3dCamera move(
  1. Sp3dV3D position
)

(en)Move the position of this camera.

(ja)このカメラの位置を移動します。

  • position : Where to move this camera.

Returns this.

Implementation

Sp3dCamera move(Sp3dV3D position) {
  this.position = position;
  rotate(rotateAxis, radian);
  return this;
}