Lines Matching defs:fov
94 node_props.push_back(GetSetProperty<float, CameraJS, &CameraJS::GetFov, &CameraJS::SetFov>("fov"));
211 float fov = 0.0;
213 ExecSyncTask([camera, &fov]() {
214 fov = 0.0;
216 fov = camera->FoV()->GetValue();
223 napi_status status = napi_create_double(ctx, fov, &value);
229 float fov = ctx.Arg<0>();
231 ExecSyncTask([camera, fov]() {
232 camera->FoV()->SetValue(fov);
275 float fov = 0.0;
277 ExecSyncTask([camera, &fov]() {
278 fov = 0.0;
280 fov = camera->FarPlane()->GetValue();
287 napi_status status = napi_create_double(ctx, fov, &value);
293 float fov = ctx.Arg<0>();
295 ExecSyncTask([camera, fov]() {
296 camera->FarPlane()->SetValue(fov);
304 float fov = 0.0;
306 ExecSyncTask([camera, &fov]() {
307 fov = 0.0;
309 fov = camera->NearPlane()->GetValue();
316 napi_status status = napi_create_double(ctx, fov, &value);
322 float fov = ctx.Arg<0>();
324 ExecSyncTask([camera, fov]() {
325 camera->NearPlane()->SetValue(fov);