Home
last modified time | relevance | path

Searched refs:numsteps (Results 1 – 25 of 224) sorted by relevance

123456789

/dports/graphics/Coin/coin-Coin-4.0.0/src/engines/
H A DSoCounter.cpp109 this->numsteps = 0; in SoCounter()
145 this->numsteps += 1; in inputChanged()
149 this->numsteps = 0; in inputChanged()
154 this->numsteps = 0; in inputChanged()
163 this->numsteps = 0; in inputChanged()
169 this->numsteps = (resetval - minval) / stepval; in inputChanged()
177 this->numsteps = 0; in inputChanged()
181 this->numsteps = 0; in inputChanged()
187 this->numsteps = 0; in inputChanged()
191 this->numsteps = 0; in inputChanged()
[all …]
H A DSoTimeCounter.cpp156 this->numsteps = 2; in SoTimeCounter()
375 this->numsteps = (this->max.getValue() - this->min.getValue()) / SbAbs(stepval) + 1; in calcNumSteps()
382 if ((this->frequency.getValue() > 0.0f) && (this->duty.getNum() == this->numsteps)) { in calcDutySteps()
385 for (i = 0; i < this->numsteps; i++) { in calcDutySteps()
390 for (i = 0; i < this->numsteps; i++) { in calcDutySteps()
415 for (i = 0; i < this->numsteps; i++) { in findOutputValue()
426 double steptime = this->cyclelen / this->numsteps; in findOutputValue()
452 double(this->stepnum) * this->cyclelen / double(this->numsteps); in calcStarttime()
/dports/graphics/blender/blender-2.91.0/intern/cycles/kernel/geom/
H A Dgeom_motion_curve.h62 if (step == numsteps) { in motion_curve_keys_for_step_linear()
69 if (step > numsteps) in motion_curve_keys_for_step_linear()
84 int numsteps, numkeys; in motion_curve_keys_linear() local
85 object_motion_info(kg, object, &numsteps, NULL, &numkeys); in motion_curve_keys_linear()
88 int maxstep = numsteps * 2; in motion_curve_keys_linear()
111 int numsteps, in motion_curve_keys_for_step() argument
119 if (step == numsteps) { in motion_curve_keys_for_step()
128 if (step > numsteps) in motion_curve_keys_for_step()
152 int numsteps, numkeys; in motion_curve_keys() local
153 object_motion_info(kg, object, &numsteps, NULL, &numkeys); in motion_curve_keys()
[all …]
H A Dgeom_motion_triangle.h56 int numsteps, in motion_triangle_verts_for_step() argument
60 if (step == numsteps) { in motion_triangle_verts_for_step()
68 if (step > numsteps) in motion_triangle_verts_for_step()
87 if (step == numsteps) { in motion_triangle_normals_for_step()
95 if (step > numsteps) in motion_triangle_normals_for_step()
110 int numsteps, numverts; in motion_triangle_vertices() local
111 object_motion_info(kg, object, &numsteps, &numverts, NULL); in motion_triangle_vertices()
114 int maxstep = numsteps * 2; in motion_triangle_vertices()
140 int numsteps, numverts; in motion_triangle_smooth_normal() local
141 object_motion_info(kg, object, &numsteps, &numverts, NULL); in motion_triangle_smooth_normal()
[all …]
H A Dgeom_motion_triangle_shader.h44 int numsteps, numverts; in motion_triangle_shader_setup() local
45 object_motion_info(kg, sd->object, &numsteps, &numverts, NULL); in motion_triangle_shader_setup()
47 int maxstep = numsteps * 2; in motion_triangle_shader_setup()
57 motion_triangle_verts_for_step(kg, tri_vindex, offset, numverts, numsteps, step, verts); in motion_triangle_shader_setup()
58 motion_triangle_verts_for_step(kg, tri_vindex, offset, numverts, numsteps, step + 1, next_verts); in motion_triangle_shader_setup()
96 motion_triangle_normals_for_step(kg, tri_vindex, offset, numverts, numsteps, step, normals); in motion_triangle_shader_setup()
98 kg, tri_vindex, offset, numverts, numsteps, step + 1, next_normals); in motion_triangle_shader_setup()
/dports/graphics/flam3/flam3-3.1.1-5-g7fb50c8/
H A Dfilters.c420 deltas = (double *)malloc(numsteps*sizeof(double)); in flam3_create_temporal_filter()
424 if (numsteps==1) { in flam3_create_temporal_filter()
433 for (i = 0; i < numsteps; i++) in flam3_create_temporal_filter()
439 for (i=0; i < numsteps; i++) { in flam3_create_temporal_filter()
442 slpx = ((double)i+1.0)/numsteps; in flam3_create_temporal_filter()
444 slpx = (double)(numsteps - i)/numsteps; in flam3_create_temporal_filter()
456 halfsteps = numsteps/2.0; in flam3_create_temporal_filter()
457 for (i=0; i < numsteps; i++) { in flam3_create_temporal_filter()
469 for (i=0; i < numsteps; i++) in flam3_create_temporal_filter()
478 for (i=0;i<numsteps;i++) { in flam3_create_temporal_filter()
[all …]
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/amenadiel/jpgraph/src/graph/
H A DLinearScale.php446 $numsteps = $adjdiff / $majstep;
448 while ($numsteps > $maxsteps) {
450 $numsteps = $adjdiff / $majstep;
481 $numsteps = floor($diff / $majstep);
483 while ($numsteps > $maxsteps) {
517 $numsteps = $adjdiff / $majstep;
518 while ($numsteps > $maxsteps) {
520 $numsteps = $adjdiff / $majstep;
555 $numsteps = floor($diff / $majstep);
556 while ($numsteps > $maxsteps) {
[all …]
/dports/science/py-MDAnalysis/MDAnalysis-0.19.2/MDAnalysis/lib/
H A Dlog.py327 def __init__(self, numsteps, format=None, interval=10, offset=1, argument
330 self.numsteps = numsteps
349 assert numsteps > 0, "numsteps step must be >0"
359 self.percentage = 100. * self.step / self.numsteps
388 if self.step == self.numsteps:
/dports/math/vtk6/VTK-6.2.0/Rendering/VolumeOpenGL/
H A DvtkProjectedAAHexahedraMapper_FS.glsl116 int numsteps = 0;
123 numsteps = 0;
132 numsteps = 0;
136 numsteps = 1;
149 numsteps = 2;
155 numsteps--;
160 numsteps--;
174 numsteps++;
180 if (numsteps==0)
218 // numsteps==2
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/Plugin/
H A DCutBox.cpp374 for(int k = 0; k < numsteps; ++k) { in addInView()
382 for(int k = 0; k < numsteps; ++k) { in addInView()
394 for(int k = 0; k < numsteps; ++k) { in addInView()
402 for(int k = 0; k < numsteps; ++k) { in addInView()
453 for(int k = 0; k < numsteps; ++k) { in addInView()
461 for(int k = 0; k < numsteps; ++k) { in addInView()
489 for(int k = 0; k < numsteps; ++k) { in addInView()
497 for(int k = 0; k < numsteps; ++k) { in addInView()
525 for(int k = 0; k < numsteps; ++k) { in addInView()
533 for(int k = 0; k < numsteps; ++k) { in addInView()
[all …]
/dports/games/golly/golly-3.3-src/Scripts/Python/
H A Dpop-plot.py79 numsteps = xlen variable
81 str(numsteps), "Population plotter")
82 if len(s) > 0: numsteps = int(s)
83 if numsteps <= 0: g.exit()
89 for i in xrange(numsteps):
98 g.show("Step %i of %i" % (i+1, numsteps))
181 for i in xrange(numsteps):
/dports/biology/seaview/seaview/csrc/
H A Ddnapars.c566 memcpy(temp->numsteps, p->numsteps, endsite*sizeof(long)); in tryadd()
684 memcpy(temp->numsteps, parent->numsteps, endsite*sizeof(long)); in trydescendants()
769 memcpy(temp1->numsteps, q->numsteps, endsite*sizeof(long)); in trydescendants()
777 memcpy(temp->numsteps, q->back->numsteps, endsite*sizeof(long)); in trydescendants()
863 memcpy(tempf->numsteps, forknode->numsteps, endsite*sizeof(long)); in trylocal()
918 memcpy(temp2->numsteps, q->numsteps, endsite*sizeof(long)); in trylocal()
965 memcpy(tempf->numsteps, other->numsteps, endsite*sizeof(long)); in trylocal2()
973 memcpy(temp->numsteps, other->numsteps, endsite*sizeof(long)); in trylocal2()
1015 memcpy(temp2->numsteps, q->numsteps, endsite*sizeof(long)); in trylocal2()
1085 memcpy(tempadd->numsteps, p->numsteps, endsite*sizeof(long)); in tryrearr()
[all …]
H A Dseq.c929 memcpy(p->numsteps, rt->numsteps, endsite*sizeof(long)); in fillin()
933 memcpy(p->numsteps, left->numsteps, endsite*sizeof(long)); in fillin()
938 p->numsteps[i] = left->numsteps[i] + rt->numsteps[i]; in fillin()
1039 memcpy(p->numsteps, rt->numsteps, endsite*sizeof(long)); in sumnsteps()
1042 memcpy(p->numsteps, left->numsteps, endsite*sizeof(long)); in sumnsteps()
1051 p->numsteps[i] = left->numsteps[i] + rt->numsteps[i]; in sumnsteps()
1075 memcpy(p->numsteps, rt->numsteps, endsite*sizeof(long)); in sumnsteps2()
1077 memcpy(p->numsteps, left->numsteps, endsite*sizeof(long)); in sumnsteps2()
1085 p->numsteps[i] = left->numsteps[i] + rt->numsteps[i]; in sumnsteps2()
1161 p->numsteps[i] += q->back->numsteps[i]; in multisumnsteps2()
[all …]
/dports/astro/marble/marble-21.12.3/tools/dateline/
H A Ddateline.cpp154 int numsteps = (int)( distance / step ); in main() local
156 for ( int i = 1; i < numsteps; ++i ) in main()
158 … const Quaternion itPos = Quaternion::slerp( lastPos, currentPos, (double)(i)/(double)(numsteps) ); in main()
167 short ipHeader = getHeader( i, numsteps ); in main()
169 …qDebug() << "numsteps: " << numsteps << "ipLon:" << (short)ipLon << "ipLat:" << (short)ipLat << "i… in main()
/dports/games/golly/golly-3.3-src/Scripts/Lua/
H A Dpop-plot.lua38 local numsteps = xlen
67 numsteps = tonumber(f:read("*l")) or xlen
81 f:write(tostring(numsteps).."\n")
139 local s = g.getstring("Enter the number of steps:", numsteps, "Population plotter")
143 numsteps = int(s)
152 for i = 1, numsteps do
161 g.show(string.format("Step %d of %d", i, numsteps))
222 for i = 1, numsteps do
/dports/www/moodle310/moodle/question/behaviour/manualgraded/tests/
H A Dwalkthrough_test.php75 $numsteps = $this->get_step_count();
77 $this->check_step_count($numsteps);
81 $this->check_step_count($numsteps + 1);
86 $this->check_step_count($numsteps + 2);
293 $numsteps = $this->get_step_count();
295 $this->check_step_count($numsteps);
302 $this->check_step_count($numsteps + 1);
311 $this->check_step_count($numsteps + 2);
319 $this->check_step_count($numsteps + 2);
325 $this->check_step_count($numsteps + 3);
[all …]
/dports/www/moodle311/moodle/question/behaviour/manualgraded/tests/
H A Dwalkthrough_test.php75 $numsteps = $this->get_step_count();
77 $this->check_step_count($numsteps);
81 $this->check_step_count($numsteps + 1);
86 $this->check_step_count($numsteps + 2);
293 $numsteps = $this->get_step_count();
295 $this->check_step_count($numsteps);
302 $this->check_step_count($numsteps + 1);
311 $this->check_step_count($numsteps + 2);
319 $this->check_step_count($numsteps + 2);
325 $this->check_step_count($numsteps + 3);
[all …]
/dports/www/moodle39/moodle/question/behaviour/manualgraded/tests/
H A Dwalkthrough_test.php75 $numsteps = $this->get_step_count();
77 $this->check_step_count($numsteps);
81 $this->check_step_count($numsteps + 1);
86 $this->check_step_count($numsteps + 2);
293 $numsteps = $this->get_step_count();
295 $this->check_step_count($numsteps);
302 $this->check_step_count($numsteps + 1);
311 $this->check_step_count($numsteps + 2);
319 $this->check_step_count($numsteps + 2);
325 $this->check_step_count($numsteps + 3);
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins_3rdparty/phylip/src/
H A Dseq.cpp936 memcpy(p->numsteps, rt->numsteps, endsite*sizeof(long)); in fillin()
940 memcpy(p->numsteps, left->numsteps, endsite*sizeof(long)); in fillin()
945 p->numsteps[i] = left->numsteps[i] + rt->numsteps[i]; in fillin()
1046 memcpy(p->numsteps, rt->numsteps, endsite*sizeof(long)); in sumnsteps()
1049 memcpy(p->numsteps, left->numsteps, endsite*sizeof(long)); in sumnsteps()
1058 p->numsteps[i] = left->numsteps[i] + rt->numsteps[i]; in sumnsteps()
1082 memcpy(p->numsteps, rt->numsteps, endsite*sizeof(long)); in sumnsteps2()
1084 memcpy(p->numsteps, left->numsteps, endsite*sizeof(long)); in sumnsteps2()
1092 p->numsteps[i] = left->numsteps[i] + rt->numsteps[i]; in sumnsteps2()
1168 p->numsteps[i] += q->back->numsteps[i]; in multisumnsteps2()
[all …]
/dports/games/bloodfrontier/bloodfrontier/src/engine/
H A Dlightning.h27 int numsteps = clamp(int(ceil(len/LIGHTNINGSTEP)), 2, MAXLIGHTNINGSTEPS); in renderlightning() local
28 step.div(numsteps+1); in renderlightning()
36 loopj(numsteps) in renderlightning()
40 if(j+1==numsteps) next = p->d; in renderlightning()
53 if(j+1==numsteps) in renderlightning()
/dports/science/py-veusz/veusz-veusz-3.3.1/veusz/datasets/
H A Doned.py275 def __init__(self, numsteps, data, serr=None, perr=None, nerr=None): argument
287 self.numsteps = numsteps
293 if numsteps == 1:
296 delta = (maxval - minval) / (numsteps-1)
297 vals = N.arange(numsteps)*delta + minval
312 return str( self.numsteps )
317 parts = [crepr(name), crepr(self.numsteps), crepr(self.range_data)]
/dports/science/py-OpenFermion/OpenFermion-1.3.0/src/openfermion/measurements/
H A Dvpe_estimators.py104 numsteps = len(self.evals) * 2
107 numsteps = len(self.evals)
109 maxtime = step_size * (numsteps - 1)
110 times = numpy.linspace(0, maxtime, numsteps)
/dports/games/tesseract-data/tesseract/src/engine/
H A Dlightning.h37 int numsteps = clamp(int(ceil(len/LIGHTNINGSTEP)), 2, MAXLIGHTNINGSTEPS); in renderlightning() local
38 step.div(numsteps+1); in renderlightning()
50 loopj(numsteps) in renderlightning()
54 if(j+1==numsteps) next = d; in renderlightning()
70 if(j+1==numsteps) in renderlightning()
/dports/games/sauerbraten/sauerbraten/src/engine/
H A Dlightning.h37 int numsteps = clamp(int(ceil(len/LIGHTNINGSTEP)), 2, MAXLIGHTNINGSTEPS); in renderlightning() local
38 step.div(numsteps+1); in renderlightning()
50 loopj(numsteps) in renderlightning()
54 if(j+1==numsteps) next = d; in renderlightning()
70 if(j+1==numsteps) in renderlightning()
/dports/games/tesseract/tesseract/src/engine/
H A Dlightning.h37 int numsteps = clamp(int(ceil(len/LIGHTNINGSTEP)), 2, MAXLIGHTNINGSTEPS); in renderlightning() local
38 step.div(numsteps+1); in renderlightning()
50 loopj(numsteps) in renderlightning()
54 if(j+1==numsteps) next = d; in renderlightning()
70 if(j+1==numsteps) in renderlightning()

123456789