mirror of
https://github.com/opencv/opencv.git
synced 2025-01-19 15:04:01 +08:00
Merge pull request #25451 from savuor:rv/fix_win_near_far
Fix build for Windows: bad var names in testdata generator
This commit is contained in:
commit
c28342f7f2
@ -224,15 +224,15 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
ModelData(std::string modelPath, double fov, double near, double far, double scale, Vec3d pos, Vec3d center, Vec3d up)
|
||||
ModelData(std::string modelPath, double fov, double nearPlane, double farPlane, double scale, Vec3d pos, Vec3d center, Vec3d up)
|
||||
{
|
||||
objectPath = modelPath;
|
||||
position = pos;
|
||||
lookat = center;
|
||||
upVector = up;
|
||||
fovy = fov;
|
||||
zNear = near;
|
||||
zFar = far;
|
||||
zNear = nearPlane;
|
||||
zFar = farPlane;
|
||||
scaleCoeff = scale;
|
||||
|
||||
std::vector<vector<int>> indvec;
|
||||
|
Loading…
Reference in New Issue
Block a user