Home
last modified time | relevance | path

Searched refs:x (Results 1476 – 1500 of 1696) sorted by path

1...<<51525354555657585960>>...68

/plugin/slider/
H A Djquery.bxslider.js977 start: {x: 0, y: 0}, property in slider.touch.start
978 end: {x: 0, y: 0} property in slider.touch.end
997 slider.touch.start.x = orig.changedTouches[0].pageX;
1015 var xMovement = Math.abs(orig.changedTouches[0].pageX - slider.touch.start.x);
1028 var change = orig.changedTouches[0].pageX - slider.touch.start.x;
1050 slider.touch.end.x = orig.changedTouches[0].pageX;
1054 var distance = Math.abs(slider.touch.start.x - slider.touch.end.x);
1056 slider.touch.start.x > slider.touch.end.x ? el.goToNextSlide() : el.goToPrevSlide();
1064 distance = slider.touch.end.x - slider.touch.start.x;
/plugin/smtp/subtree/txtthinking/Mailer/
H A Dcomposer.lock76 "dev-master": "1.0.x-dev"
190 "dev-master": "1.15.x-dev"
245 "dev-master": "2.0.x-dev"
292 "dev-master": "1.4.x-dev"
361 "dev-master": "2.1.x-dev"
409 "dev-master": "1.4.x-dev"
611 "dev-master": "4.7.x-dev"
668 "dev-master": "2.3.x-dev"
720 "dev-master": "1.2.x-dev"
834 "dev-master": "1.3.x-dev"
[all …]
/plugin/snap/
H A Dsnap.sh29 convert -resize x$7 $2 $2;
40 convert -crop $6x$7+0+0 $2 $2
H A Dsyntax.php.ori123 if ($options) $options=explode("x",$options);
163 $image.="_".$larg."x".$haut.".jpg";
/plugin/snow/
H A Dsnowstorm.js150 this.setXY = function(o, x, y) { argument
353 this.SnowFlake = function(type,x,y) { argument
356 this.x = x||parseInt(rnd(screenX-20),10);
390 if (isNaN(s.x) || isNaN(s.y)) {
394 storm.setXY(s.o, s.x, s.y);
424 s.x += vX;
426 if (s.x >= screenX || screenX-s.x < storm.flakeWidth) { // X-axis scroll check
427 s.x = 0;
551 var x = parseInt(e.clientX,10);
552 if (x<screenX2) {
[all …]
/plugin/socialite/images/
H A Demail.svg6 fill="teal"/><rect width="356" height="256" x="78" y="128" fill="#fff" rx="8%"/><path fill="none" s…
/plugin/socialshareprivacy/
H A Djquery.socialshareprivacy.min.js14 (function(b){function x(b,a){var f=decodeURIComponent(b);if(f.length<=a)return b;var j=f.substring(… function
22 …}if(j){g=a.services.twitter.tweet_text;"function"===typeof g&&(g=g());var g=x(g,"120"),o=encodeURI…
/plugin/socialshareprivacy2/SSP/
H A DREADME.md363 <script type="application/x-social-share-privacy-settings">
/plugin/socialshareprivacy2/SSP/scripts/
H A Djquery.socialshareprivacy.tumblr.js49 var x = Math.round(winx + (winw - width) * 0.5);
51 …window.open(this.href, 't', 'left='+x+',top='+y+',toolbar=0,resizable=0,status=0,menubar=0,width='…
/plugin/spatialhelper/helper/
H A Dsearch.php75 * The x coordinate (or longitude)
148 'lat' => $point->y(), 'lon' => $point->x()];
179 'lon' => $decodedPoint->x(),
/plugin/spellcheck/
H A Dscript.js255 var x = findPosX('spell__error'+id);
266 this.suggestObj.style.left = x+'px';
/plugin/sphinxsearch-was/
H A DINSTALL3 1. Sphinx Search v2.x: http://www.sphinxsearch.com/downloads.html
8 2. PHP >= 7.x with SQLite extension (it is enabled by default as of PHP 5)
61 ''chmod +x /etc/cron.daily/sphinx-rotate-grimore'').
/plugin/sqlraw/
H A Dsyntax.php449 for ($x = 1; $x <= $tableNumber; $x++) {
/plugin/statdisplay/pchart/
H A DPoint.php7 public function __construct($x, $y) { argument
8 $this->x = $x;
13 return $this->x;
21 return sqrt((($other->x - $this->x) * ($other->x - $this->x))
29 public function addIncrement($x, $y) { argument
30 return new Point($this->x + $x, $this->Y + $y);
34 return sprintf("Point<%d, %d>", $this->x, $this->y);
37 private $x; variable in Point
H A DREADME2 1.x library. We can't use the pChart 2.x library because of unclear license
/plugin/statistics/inc/pchart/
H A DPoint.php7 public function __construct($x, $y) { argument
8 $this->x = $x;
13 return $this->x;
22 (($other->x - $this->x) * ($other->x - $this->x))
31 public function addIncrement($x, $y) { argument
32 return new Point($this->x
39 private $x; global() variable in Point
[all...]
H A DREADME2 1.x library. We can't use the pChart 2.x library because of unclear license
/plugin/stlviewer/stlviewer/
H A DCanvasRenderer.js261 _clearBox.min.x = _clearBox.min.x + _canvasWidthHalf;
263 _clearBox.max.x = _clearBox.max.x + _canvasWidthHalf;
269 _clearBox.min.x | 0,
271 ( _clearBox.max.x - _clearBox.min.x ) | 0,
285 _clearBox.min.x | 0,
287 ( _clearBox.max.x - _clearBox.min.x ) | 0,
948 offsetX = texture.offset.x / texture.repeat.x,
1033 var x = v2.x - v1.x, y = v2.y - v1.y,
1034 det = x * x + y * y, idet;
1042 v2.x += x; v2.y += y;
[all …]
H A DOrbitControls.js234 var theta = Math.atan2( offset.x, offset.z );
238 var phi = Math.atan2( Math.sqrt( offset.x * offset.x + offset.z * offset.z ), offset.y );
263 offset.x = radius * Math.sin( phi ) * Math.sin( theta );
360 scope.rotateLeft( 2 * Math.PI * rotateDelta.x / element.clientWidth * scope.rotateSpeed );
393 scope.pan( panDelta.x, panDelta.y );
544 scope.rotateLeft( 2 * Math.PI * rotateDelta.x / element.clientWidth * scope.rotateSpeed );
588 scope.pan( panDelta.x, panDelta.y );
H A DProjector.js85 this.x = 0;
188 positionScreen.x *= invW;
192 vertex.visible = positionScreen.x >= - 1 && positionScreen.x <= 1 &&
209 normals.push( x, y, z );
219 function pushUv( x, y ) { argument
221 uvs.push( x, y );
239 return ( ( v3.positionScreen.x - v1.positionScreen.x ) *
242 ( v2.positionScreen.x - v1.positionScreen.x ) ) < 0;
552 _vector3.x += ( targetVertex.x - vertex.x ) * influence;
831 _sprite.x = _vector4.x * invW;
[all …]
H A DTrackballControls.js150 moveDirection.set( _moveCurr.x - _movePrev.x, _moveCurr.y - _movePrev.y, 0 );
162 objectSidewaysDirection.setLength( _moveCurr.x - _movePrev.x );
242 pan.copy( _eye ).cross( _this.object.up ).setLength( mouseChange.x );
512 var x = ( event.touches[ 0 ].pageX + event.touches[ 1 ].pageX ) / 2;
514 _panStart.copy( getMouseOnScreen( x, y ) );
543 var x = ( event.touches[ 0 ].pageX + event.touches[ 1 ].pageX ) / 2;
545 _panEnd.copy( getMouseOnScreen( x, y ) );
H A Dload_stl.min.js2x=0,y=0,z=0,model_id=-1,get_progress=!1,jszip_path="jszip.min.js";function isNumeric(a){return!isN… variable
H A Dparser.min.js2x=80;try{var y=u.getUint32(x,!0)}catch(e){return"Can't parse file"}var m=84+50*y;if(e.byteLength!=… property in parse_3mf_from_txt.z
H A Dstl_viewer.min.js2x,o.camera.position.y,a);const i=o.minz,n=i<0?-i+a:a-i;o.camera.far=Math.max(3e3*n,o.camera.far),o… property in get_normal.d
H A Dthree.min.js2x=1012,_=1014,b=1015,w=1016,M=1020,S=1022,T=1023,E=1026,A=1027,L=33776,R=33777,C=33778,P=33779,I=3… function

1...<<51525354555657585960>>...68