Skip to content

Documentation / @ripl/vue-3d / RiplCameraProps

Interface: RiplCameraProps ​

Defined in: vue-3d/src/types.ts:101

Props accepted by RiplCamera.

Properties ​

PropertyTypeDescriptionDefined in
far?numberThe distance to the far clipping plane. Defaults to 1000.vue-3d/src/types.ts:113
fov?numberThe vertical field of view, in degrees. Defaults to 60.vue-3d/src/types.ts:109
interactions?boolean | CameraInteractionsPointer interactions, enabled all at once with a boolean or individually.vue-3d/src/types.ts:117
near?numberThe distance to the near clipping plane. Defaults to 0.1.vue-3d/src/types.ts:111
position?Vector3The camera's world-space position. Defaults to [0, 0, 5].vue-3d/src/types.ts:103
projection?"perspective" | "orthographic"The projection type. Defaults to perspective.vue-3d/src/types.ts:115
target?Vector3The world-space point the camera looks at. Defaults to the origin.vue-3d/src/types.ts:105
up?Vector3The world-space up direction. Defaults to [0, 1, 0].vue-3d/src/types.ts:107