Home
last modified time | relevance | path

Searched refs:FOV (Results 1 – 25 of 1411) sorted by relevance

12345678910>>...57

/dports/astro/kstars/kstars-3.5.6/kstars/auxiliary/
H A Dfov.cpp28 QList<FOV *> FOVManager::m_FOVs;
29 int FOV::m_ID = 1;
36 QList<FOV *> FOVManager::defaults() in defaults()
38 QList<FOV *> fovs; in defaults()
63 foreach (FOV *fov, m_FOVs) in save()
101 FOV::Shape shape; in readFOVs()
185 FOV::FOV() : QObject() in FOV() function in FOV
202 FOV::FOV(const FOV &other) : QObject() in FOV() function in FOV
216 void FOV::sync(const FOV &other) in sync()
355 SkyPoint FOV::center() const in center()
[all …]
H A Dfov.h27 class FOV : public QObject
33 Q_PROPERTY(FOV::Shape shape MEMBER m_shape)
54 FOV();
57 FOV(const FOV &other);
59 void sync(const FOV &other);
122 FOV::Shape m_shape;
150 static void addFOV(FOV *newFOV) in addFOV()
155 static void removeFOV(FOV *fov) in removeFOV()
170 static QList<FOV *> defaults();
172 static QList<FOV *> m_FOVs;
[all …]
/dports/devel/upp/upp/bazaar/SurfaceCtrl/
H A DUOGL_Camera.h28 FOV = camera.FOV;
42 …xcept{if(LimiteFOV){if(value < MinFOV) FOV = MinFOV;else if(value > MaxFOV)FOV = MaxFOV;else FOV =… in SetFOV()
43 float GetFOV()const noexcept{return FOV;} in GetFOV()
112 if(LimiteFOV && FOV >= MinFOV && FOV <= MaxFOV){ in ProcessMouseScroll()
113 FOV -=yoffset; in ProcessMouseScroll()
114 if(FOV <= MinFOV) FOV = MinFOV; in ProcessMouseScroll()
115 if(FOV >= MaxFOV) FOV = MaxFOV; in ProcessMouseScroll()
117 FOV -= yoffset; in ProcessMouseScroll()
141 float FOV =45.0f; variable
/dports/astro/kstars/kstars-3.5.6/kstars/printing/
H A Dsimplefovexporter.h13 class FOV; variable
44 void exportFov(SkyPoint *point, FOV *fov, QPaintDevice *pd);
51 void exportFov(FOV *fov, QPaintDevice *pd);
65 …void exportFov(const QList<SkyPoint *> &points, const QList<FOV *> &fovs, const QList<QPaintDevice…
73 void exportFov(const QList<SkyPoint *> &points, FOV *fov, const QList<QPaintDevice *> &pds);
151 void pExportFov(SkyPoint *point, FOV *fov, QPaintDevice *pd);
H A Dfovsnapshot.h15 class FOV; variable
34 FovSnapshot(const QPixmap &pixmap, const QString description, FOV *fov, const SkyPoint &center);
52 FOV *getFov() { return m_Fov; } in getFov()
76 void setFov(FOV *fov) { m_Fov = fov; } in setFov()
87 FOV *m_Fov;
H A Dsimplefovexporter.cpp23 void SimpleFovExporter::exportFov(SkyPoint *point, FOV *fov, QPaintDevice *pd) in exportFov()
30 void SimpleFovExporter::exportFov(FOV *fov, QPaintDevice *pd) in exportFov()
51 void SimpleFovExporter::exportFov(const QList<SkyPoint *> &points, const QList<FOV *> &fovs, in exportFov()
66 void SimpleFovExporter::exportFov(const QList<SkyPoint *> &points, FOV *fov, const QList<QPaintDevi… in exportFov()
80 void SimpleFovExporter::pExportFov(SkyPoint *point, FOV *fov, QPaintDevice *pd) in pExportFov()
124 if (fov->shape() == FOV::SQUARE) in pExportFov()
/dports/audio/milkytracker/MilkyTracker-1.03.00/src/fx/
H A DParticleFX.cpp148 ParticleFX::ParticleFX(int width, int height, int numParticles, int FOV) in ParticleFX() argument
153 if (FOV != -1) in ParticleFX()
154 this->FOV = FOV; in ParticleFX()
156 this->FOV = (this->width * 256) / 320; in ParticleFX()
181 int FOV = this->FOV; in render() local
194 int x = (fpmul((v.x),rz)*FOV)+(XMAX>>1)*65536; in render()
195 int y = (fpmul((v.y),rz)*FOV)+(YMAX>>1)*65536; in render()
197 int size = fpmul((particles[i].size*4)*FOV,rz); in render()
H A DParticleFX.h55 int FOV; variable
64 ParticleFX(int width, int height, int numParticles, int FOV = -1);
70 void setFOV(int FOV) { this->FOV = FOV; } in setFOV() argument
/dports/science/chrono/chrono-7.0.1/src/chrono_sensor/filters/
H A DChFilterVisualizePointCloud.cpp78 float FOV = 20 * m_zoom; in Apply() local
79 glOrtho(-FOV, FOV, -FOV, FOV, -FOV, in Apply()
80 FOV); // TODO: adjust these based on the sensor or data - vis parameters in Apply()
/dports/games/ecwolf/ecwolf-1.3.3-src/src/g_shared/
H A Da_playerpawn.cpp253 if (player->FOV != desired) in Tick()
256 if (player->FOV < 0) in Tick()
258 player->FOV *= -1; in Tick()
260 else if (fabsf (player->FOV - desired) < 7.f) in Tick()
262 player->FOV = desired; in Tick()
266 float zoom = MAX(7.f, fabsf(player->FOV - desired) * 0.025f); in Tick()
267 if (player->FOV > desired) in Tick()
269 player->FOV = player->FOV - zoom; in Tick()
273 player->FOV = player->FOV + zoom; in Tick()
/dports/games/alephone/alephone-release-20190331/Source_Files/RenderOther/
H A DViewControl.cpp135 bool View_AdjustFOV(float& FOV, float FOV_Target) in View_AdjustFOV() argument
140 if (FOV > FOV_Target) in View_AdjustFOV()
142 FOV -= FOV_ChangeRate; in View_AdjustFOV()
143 FOV = MAX(FOV,FOV_Target); in View_AdjustFOV()
146 else if (FOV < FOV_Target) in View_AdjustFOV()
148 FOV += FOV_ChangeRate; in View_AdjustFOV()
149 FOV = MIN(FOV,FOV_Target); in View_AdjustFOV()
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAMax/src/
H A DCOLLADAMaxCameraExporter.cpp165 if ( AnimationExporter::isAnimated(parameters, MaxCamera::FOV) ) in exportCamera()
167 … optics->setXMag(conversionInverseOrthoFOVFunctor(parameters->GetFloat(MaxCamera::FOV)), XMAG_SID); in exportCamera()
168 …mAnimationExporter->addAnimatedParameter(parameters, MaxCamera::FOV, cameraId, XMAG_SID, 0, true, … in exportCamera()
172 optics->setXMag(conversionInverseOrthoFOVFunctor(parameters->GetFloat(MaxCamera::FOV))); in exportCamera()
178 if ( AnimationExporter::isAnimated(parameters, MaxCamera::FOV) ) in exportCamera()
180 … optics->setXFov(COLLADASW::MathUtils::radToDegF(parameters->GetFloat(MaxCamera::FOV)), XFOV_SID); in exportCamera()
181 …mAnimationExporter->addAnimatedParameter(parameters, MaxCamera::FOV, cameraId, XFOV_SID, 0, true, … in exportCamera()
185 optics->setXFov(COLLADASW::MathUtils::radToDegF(parameters->GetFloat(MaxCamera::FOV))); in exportCamera()
/dports/astro/kstars/kstars-3.5.6/kstars/
H A Dkstarsdata.h40 class FOV; variable
305 inline const QList<FOV *> getVisibleFOVs() const in getVisibleFOVs()
313 inline const QList<FOV *> getAvailableFOVs() const in getAvailableFOVs()
322 inline void addTransientFOV(std::shared_ptr<FOV> newFOV) in addTransientFOV()
334 inline const QList<std::shared_ptr<FOV>> getTransientFOVs() const in getTransientFOVs()
578 QList<FOV *> availFOVs; // List of all available FOVs
579 QList<FOV *> visibleFOVs; // List of visible FOVs. Cached from Options::FOVNames
580 QList<std::shared_ptr<FOV>> transientFOVs; // List of non-permenant transient FOVs.
/dports/astro/kstars/kstars-3.5.6/kstars/dialogs/
H A Dfovdialog.ui13 <string>Edit FOV Symbols</string>
54 <string>Add a new FOV symbol</string>
57 …<string>Add a new field-of-view (FOV) symbol to the list. You can define the size, shape, and col…
83 <string>Modify the highlighted FOV symbol</string>
86 …<string>Press this button to modify the highlighted FOV symbol. You can change its size, shape an…
96 <string>Remove highlighted FOV symbol</string>
99 <string>Press this button to remove the highlighted FOV symbol from the list.</string>
H A Dfovdialog.h51 QListWidgetItem *addListWidget(FOV *f);
71 explicit NewFOV(QWidget *parent = nullptr, const FOV *fov = nullptr);
74 const FOV &getFOV() const in getFOV()
88 FOV f;
H A Dfovdialog.cpp31 Q_DECLARE_METATYPE(FOV *)
44 FOV *getFOV(QListWidgetItem *item) in getFOV()
46 return item->data(Qt::UserRole).value<FOV *>(); in getFOV()
74 fovID = qRegisterMetaType<FOV *>("FOV*"); in FOVDialog()
94 foreach (FOV *f, FOVManager::getFOVs()) in FOVDialog()
108 QListWidgetItem *FOVDialog::addListWidget(FOV *f) in addListWidget()
111 item->setData(Qt::UserRole, QVariant::fromValue<FOV *>(f)); in addListWidget()
133 FOV *newfov = new FOV(newfdlg->getFOV()); in slotNewFOV()
147 FOV *f = item->data(Qt::UserRole).value<FOV *>(); in slotEditFOV()
173 NewFOV::NewFOV(QWidget *parent, const FOV *fov) : QDialog(parent), f() in NewFOV()
[all …]
/dports/astro/kstars/kstars-3.5.6/kstars/widgets/
H A Dfovwidget.h11 class FOV; variable
20 void setFOV(FOV *f);
26 FOV *m_FOV { nullptr };
/dports/games/billardgl/BillardGL-1.75/src/
H A DKamera.cpp25 FOV=38.6; in Kamera()
30 FOV=30.7; in Kamera()
35 FOV=38.6; in Kamera()
40 FOV=38.6; in Kamera()
45 FOV=38.6; in Kamera()
50 FOV=38.6; in Kamera()
55 FOV=38.6; in Kamera()
60 FOV=38.6; in Kamera()
78 FOV=38.6; in Kamera()
136 Positionen[Platz][5]=FOV; in speicherePosition()
[all …]
/dports/games/marblemarcher/Marble-Marcher-Community-Edition-1.4.5/game_folder/shaders/compute/utility/
H A Dcamera.glsl17 float FOV;
50 vec2 shift = cam.FOV*(2.f*screen_pos - 1.f)*vec2(cam.aspect_ratio, -1.f);
55 fovray = 1.41*cam.FOV*max(1.f/aspect_ratio_ratio, aspect_ratio_ratio)/cam.resolution.x; //pixel FOV
68 vec2 shift = Camera.FOV*(2.f*screen_pos - 1.f)*vec2(Camera.aspect_ratio, -1.f);
112 …UV = vec2(dot(a,normalize(cam.dirx))/cam.aspect_ratio,-dot(a,normalize(cam.diry)))/(2.*cam.FOV*dot…
116 …UV = vec2(dot(a,normalize(cam.dirx))/cam.aspect_ratio,-dot(a,normalize(cam.diry)))/(2.*cam.FOV*dot…
/dports/astro/kstars/kstars-3.5.6/kstars/tools/
H A Deyepiecefield.h25 class FOV; variable
53 …void showEyepieceField(SkyPoint *sp, FOV const *const fov = nullptr, const QString &imagePath = QS…
90 … const FOV *fov = nullptr, const QString &imagePath = QString());
161 const FOV *m_currentFOV;
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/ImageFunction/test/
H A DitkLabelImageGaussianInterpolateImageFunctionTest.cxx38 constexpr double FOV = 10.0; in itkLabelImageGaussianInterpolateImageFunctionTest() local
60 spacing.Fill( FOV/static_cast<double>(small_ySize) ); in itkLabelImageGaussianInterpolateImageFunctionTest()
62 origin.Fill( 0.5* FOV/static_cast<double>(small_ySize) ); in itkLabelImageGaussianInterpolateImageFunctionTest()
140 spacing.Fill( FOV/static_cast<double>(large_ySize) ); in itkLabelImageGaussianInterpolateImageFunctionTest()
142 origin.Fill( 0.5* FOV/static_cast<double>(large_ySize) ); in itkLabelImageGaussianInterpolateImageFunctionTest()
/dports/games/openjk/OpenJK-07675e2/code/cgame/
H A Dcg_camera.cpp91 client_camera.FOV = CAMERA_DEFAULT_FOV; in CGCam_Enable()
353 void CGCam_SetFOV( float FOV ) in CGCam_SetFOV() argument
355 client_camera.FOV = FOV; in CGCam_SetFOV()
368 CGCam_SetFOV( FOV ); in CGCam_Zoom()
374 client_camera.FOV2 = FOV; in CGCam_Zoom()
389 client_camera.FOV = FOV; in CGCam_Zoom2()
1104 float actualFOV_X = client_camera.FOV; in CGCam_Update()
1161 client_camera.FOV = actualFOV_X; in CGCam_Update()
1182 CG_CalcFOVFromX( client_camera.FOV ); in CGCam_Update()
1519 beginFOV = client_camera.FOV; in CGCam_NotetrackProcessFovZoom()
[all …]
H A Dcg_camera.h67 float FOV; member
148 void CGCam_SetFOV( float FOV );
150 void CGCam_Zoom( float FOV, float duration );
/dports/games/openjk/OpenJK-07675e2/codeJK2/cgame/
H A Dcg_camera.h63 float FOV; member
142 void CGCam_SetFOV( float FOV );
144 void CGCam_Zoom( float FOV, float duration );
/dports/multimedia/libquicktime-lame/libquicktime-1.2.4/src/
H A Dobji.c44 obji->FOV = 64; in quicktime_obji_init()
82 lqt_dump(" fov %f\n", obji->FOV ); in quicktime_obji_dump()
115 obji->FOV = quicktime_read_float32(file); in quicktime_read_obji()
150 quicktime_write_float32(file, obji->FOV); in quicktime_write_obji()

12345678910>>...57