Home
last modified time | relevance | path

Searched refs:limitMax (Results 1 – 25 of 40) sorted by relevance

12

/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/src/
H A Dmesh_export.cpp56 cMeshExport::cMeshExport(int w, int h, int l, CVector3 limitMin, CVector3 limitMax, in cMeshExport() argument
64 this->limitMax = limitMax; in cMeshExport()
99 double sizeX = (limitMax.x - limitMin.x); in ProcessVolume()
100 double sizeY = (limitMax.y - limitMin.y); in ProcessVolume()
101 double sizeZ = (limitMax.z - limitMin.z); in ProcessVolume()
113 limitMax += CVector3(extension, extension, extension); in ProcessVolume()
120 limitMax.x = limitMin.x + w * step; in ProcessVolume()
121 limitMax.y = limitMin.y + h * step; in ProcessVolume()
122 limitMax.z = limitMin.z + l * step; in ProcessVolume()
126 params.get()->limitMax = limitMax - CVector3(extension, extension, extension); in ProcessVolume()
[all …]
H A Dvoxel_export.cpp60 cVoxelExport::cVoxelExport(int w, int h, int l, CVector3 limitMin, CVector3 limitMax, QDir folder, in cVoxelExport() argument
68 this->limitMax = limitMax; in cVoxelExport()
95 const double stepX = (limitMax.x - limitMin.x) * (1.0 / w); in ProcessVolume()
96 const double stepY = (limitMax.y - limitMin.y) * (1.0 / h); in ProcessVolume()
97 const double stepZ = (limitMax.z - limitMin.z) * (1.0 / l); in ProcessVolume()
120 clMeshParams.limitMax = toClFloat3(limitMax); in ProcessVolume()
H A Dvoxel_export.hpp53 cVoxelExport(int w, int h, int l, CVector3 limitMin, CVector3 limitMax, QDir folder, int maxIter,
71 CVector3 limitMax; member in cVoxelExport
H A Dmesh_export.hpp47 cMeshExport(int w, int h, int l, CVector3 limitMin, CVector3 limitMax, QString outputFileName,
64 CVector3 limitMax; member in cMeshExport
H A Dshader_aux_shadow.cpp108 if (point2.x < params->limitMin.x || point2.x > params->limitMax.x in AuxShadow()
109 || point2.y < params->limitMin.y || point2.y > params->limitMax.y in AuxShadow()
110 || point2.z < params->limitMin.z || point2.z > params->limitMax.z) in AuxShadow()
H A Dheadless.cpp160 CVector3 limitMax; in RenderVoxel() local
164 limitMax = gPar->Get<CVector3>("voxel_limit_max"); in RenderVoxel()
169 limitMax = gPar->Get<CVector3>("limit_max"); in RenderVoxel()
185 samplesX, samplesY, samplesZ, limitMin, limitMax, folder, maxIter, greyscale)); in RenderVoxel()
200 samplesX, samplesY, samplesZ, limitMin, limitMax, fileString, maxIter, meshConfig)); in RenderVoxel()
H A Dcalculate_distance.cpp67 max(in.point.x - params.limitMax.x, -(in.point.x - params.limitMin.x)); in CalculateDistance()
69 max(in.point.y - params.limitMax.y, -(in.point.y - params.limitMin.y)); in CalculateDistance()
71 max(in.point.z - params.limitMax.z, -(in.point.z - params.limitMin.z)); in CalculateDistance()
/dports/science/chrono/chrono-7.0.1/src/chrono/core/
H A DChMathematics.h88 void ChClampValue(T& value, T limitMin, T limitMax) { in ChClampValue() argument
91 else if (value > limitMax) in ChClampValue()
92 value = limitMax; in ChClampValue()
97 T ChClamp(T value, T limitMin, T limitMax) { in ChClamp() argument
100 if (value > limitMax) in ChClamp()
101 return limitMax; in ChClamp()
/dports/math/jacop/jacop-4.8.0/src/main/java/org/jacop/constraints/cumulative/
H A DCumulativeBasic.java174 int limitMax = limit.max(); in updateTasksRes() local
176 t.res.domain.inMax(store.level, t.res, limitMax); in updateTasksRes()
199 int limitMax = limit.max(); in sweepPruning() local
237 System.out.println("limit.max() = " + limitMax); in sweepPruning()
292 boolean noSpace = limitMax - profileValue < t.res.min(); in sweepPruning()
335 t.res.domain.inMax(store.level, t.res, limitMax - profileValue); in sweepPruning()
348 boolean noSpace = limitMax - profileValue < t.res.min(); in sweepPruning()
367 … if (limitMax - profileValue < t.res.max() && t.lst() <= e.date() && e.date() < t.ect()) in sweepPruning()
368 t.res.domain.inMax(store.level, t.res, limitMax - profileValue); in sweepPruning()
401 t.res.domain.inMax(store.level, t.res, limitMax - profileValue); in sweepPruning()
[all …]
H A DCumulativePrimary.java180 int limitMax = limit.max(); in sweepPruning() local
221 System.out.println("limit.max() = " + limitMax); in sweepPruning()
263 if (!inProfile[ti] && limitMax - curProfile < res[ti]) { in sweepPruning()
268 if (inProfile[ti] || limitMax - curProfile >= res[ti]) { in sweepPruning()
292 if (!inProfile[ti] && limitMax - curProfile < res[ti]) { in sweepPruning()
/dports/astro/qmapshack/qmapshack-V_1.16.1/src/qmapshack/plot/
H A DCPlotAxis.cpp31 limitMax = max; in setLimits()
205 limMax = limitMax; in getLimits()
303 setMinMax(limitMin, limitMax); in resetZoom()
316 if(qRound(max - min) <= qRound(limitMax - limitMin)) in zoom()
327 bool f = !(usedMax - usedMin < limitMax - limitMin); in move()
332 if (f ^ (usedMax + delta_val > limitMax)) in move()
334 delta_val = (limitMax - usedMax); in move()
/dports/databases/hbase/hbase-1.2.1/hbase-client/src/main/java/org/apache/hadoop/hbase/client/backoff/
H A DExponentialClientBackoffPolicy.java98 double limitMax) { in scale() argument
101 Preconditions.checkArgument(limitMin <= limitMax, "Illegal target range [%s,%s]", in scale()
102 limitMin, limitMax); in scale()
105 return ((limitMax - limitMin) * (valueIn - baseMin) / (baseMax - baseMin)) + limitMin; in scale()
/dports/games/meandmyshadow/meandmyshadow-0.5a/src/
H A DGUISpinBox.cpp170 if(number>limitMax){ in update()
171 number=limitMax; in update()
193 if(number>limitMax){ in updateValue()
194 number=limitMax; in updateValue()
H A DGUISpinBox.h30 change(1.0f),limitMax(100),limitMin(-100),format("%g"),
36 double limitMax,limitMin; variable
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/qt/
H A Dmesh_export_dialog.cpp73 CVector3 limitMax; in on_pushButton_start_render_layers_clicked() local
77 limitMax = gPar->Get<CVector3>("voxel_limit_max"); in on_pushButton_start_render_layers_clicked()
82 limitMax = gPar->Get<CVector3>("limit_max"); in on_pushButton_start_render_layers_clicked()
113 samplesX, samplesY, samplesZ, limitMin, limitMax, fi.absoluteFilePath(), maxIter, meshConfig); in on_pushButton_start_render_layers_clicked()
H A Dvoxel_export_dialog.cpp72 CVector3 limitMax; in on_pushButton_start_render_layers_clicked() local
76 limitMax = gPar->Get<CVector3>("voxel_limit_max"); in on_pushButton_start_render_layers_clicked()
81 limitMax = gPar->Get<CVector3>("limit_max"); in on_pushButton_start_render_layers_clicked()
96 samplesX, samplesY, samplesZ, limitMin, limitMax, folder, maxIter, greyscale); in on_pushButton_start_render_layers_clicked()
/dports/math/jacop/jacop-4.8.0/src/main/java/org/jacop/constraints/
H A DCumulative.java426 int limitMax = limit.max(); in edgeFindingDown() local
458 int maxuse = limitMax - l.res.min(); in edgeFindingDown()
463 slack = (l_LCT - startS) * limitMax - a - l.areaMin(); in edgeFindingDown()
589 int limitMax = limit.max(); in edgeFindingUp() local
629 int maxuse = limitMax - l.res.min(); in edgeFindingUp()
734 int limitMax = limit.max(); in fitTasksAfter() local
735 long availableArea = (lctOfS - est0) * limitMax; in fitTasksAfter()
760 int limitMax = limit.max(); in fitTasksBefore() local
761 long availableArea = (lct0 - estOfS) * limitMax; in fitTasksBefore()
1159 int limitMax = limit.max();
[all …]
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/opencl/
H A Dmesh_export_data_cl.h41 cl_float3 limitMax; member
/dports/misc/visp/visp-3.4.0/modules/robot/src/robot-simulator/
H A DvpSimulatorAfma6.cpp1781 void vpSimulatorAfma6::setJointLimit(const vpColVector &limitMin, const vpColVector &limitMax) in setJointLimit() argument
1783 if (limitMin.getRows() != 6 || limitMax.getRows() != 6) { in setJointLimit()
1795 _joint_max[0] = limitMax[0]; in setJointLimit()
1796 _joint_max[1] = limitMax[1]; in setJointLimit()
1797 _joint_max[2] = limitMax[2]; in setJointLimit()
1798 _joint_max[3] = limitMax[3]; in setJointLimit()
1799 _joint_max[4] = limitMax[4]; in setJointLimit()
1800 _joint_max[5] = limitMax[5]; in setJointLimit()
H A DvpSimulatorViper850.cpp1713 void vpSimulatorViper850::setJointLimit(const vpColVector &limitMin, const vpColVector &limitMax) in setJointLimit() argument
1715 if (limitMin.getRows() != 6 || limitMax.getRows() != 6) { in setJointLimit()
1727 joint_max[0] = limitMax[0]; in setJointLimit()
1728 joint_max[1] = limitMax[1]; in setJointLimit()
1729 joint_max[2] = limitMax[2]; in setJointLimit()
1730 joint_max[3] = limitMax[3]; in setJointLimit()
1731 joint_max[4] = limitMax[4]; in setJointLimit()
1732 joint_max[5] = limitMax[5]; in setJointLimit()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/flang/unittests/RuntimeGTest/
H A DCharacterTest.cpp54 static constexpr int limitMax{8}; in TEST() local
55 static char buffer[limitMax]; in TEST()
57 for (std::size_t limit{0}; limit < limitMax; ++limit, offset = 0) { in TEST()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/flang/unittests/Runtime/
H A DCharacterTest.cpp54 static constexpr int limitMax{8}; in TEST() local
55 static char buffer[limitMax]; in TEST()
57 for (std::size_t limit{0}; limit < limitMax; ++limit, offset = 0) { in TEST()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/flang/unittests/RuntimeGTest/
H A DCharacterTest.cpp54 static constexpr int limitMax{8}; in TEST() local
55 static char buffer[limitMax]; in TEST()
57 for (std::size_t limit{0}; limit < limitMax; ++limit, offset = 0) { in TEST()
/dports/devel/llvm13/llvm-project-13.0.1.src/flang/unittests/RuntimeGTest/
H A DCharacterTest.cpp54 static constexpr int limitMax{8}; in TEST() local
55 static char buffer[limitMax]; in TEST()
57 for (std::size_t limit{0}; limit < limitMax; ++limit, offset = 0) { in TEST()
/dports/editors/e93/e93/xgui/
H A Dviews.h49 …GraphicPosition(EDITOR_VIEW *view,UINT32 position,INT32 *xPosition,bool limitMax,UINT32 *slopLeft,…

12