FreeCAD: Compiler warning fixes

This commit is contained in:
Chris Hennes
2025-03-12 23:16:43 -05:00
committed by Kacper Donat
parent b170b8e27c
commit 21c07cabc5
15 changed files with 32 additions and 24 deletions

View File

@@ -791,7 +791,7 @@ RayPickInfo View3DInventor::getObjInfoRay(Base::Vector3d* startvec, Base::Vector
vdy = dirvec->y;
vdz = dirvec->z;
// near plane clipping is required to avoid false intersections
float nearClippingPlane = 0.1;
float nearClippingPlane = 0.1F;
RayPickInfo ret = {false,
Base::Vector3d(),