DefaultCamera

class DefaultCamera : Camera {}

Members

Mixins

__anonymous
mixin CameraImpl
Undocumented in source.

Mixed In Members

From mixin CameraImpl

projectionMatrix
Matrix4f projectionMatrix()

projectionMatrixを取得します.

viewMatrix
Matrix4f viewMatrix()
position
Vector3f position()

Cameraの位置を表します.

position
T position(Vector3f p)
target
Vector3f target()

Cameraが映す対象の位置を表します.

target
T target(Vector3f v)
up
Vector3f up()

Cameraの方向を表します.

up
T up(Vector3f v)
fov
double fov()

Cameraの視野角を表します.単位はdegreeです.

fov
T fov(double f)
nearDist
double nearDist()

描画を行う最短距離です.

nearDist
T nearDist(double n)
farDist
double farDist()

描画を行う最長距離です.

farDist
T farDist(double f)
begin
T begin()

Cameraで表示する処理を開始します.

end
T end()

Cameraで表示する処理を終了します.

Inherited Members

From Camera

projectionMatrix
Matrix4f projectionMatrix()

projectionMatrixを取得します.

viewMatrix
Matrix4f viewMatrix()

viewMatrixを取得します.

position
Vector3f position()

Cameraの位置を表します.

position
Camera position(Vector3f p)
target
Vector3f target()

Cameraが映す対象の位置を表します.

target
Camera target(Vector3f v)
up
Vector3f up()

Cameraの方向を表します.

up
Camera up(Vector3f v)
fov
double fov()

Cameraの視野角を表します.単位はdegreeです.

fov
Camera fov(double f)
nearDist
double nearDist()

描画を行う最短距離です.

nearDist
Camera nearDist(double n)
farDist
double farDist()

描画を行う最長距離です.

farDist
Camera farDist(double f)
begin
Camera begin()

Cameraで表示する処理を開始します.

end
Camera end()

Cameraで表示する処理を終了します.

Meta