Lines Matching refs:o

588      o {
589 o id (string) animation id,
590 o start (number) start _slave_ number,
591 o end (number) end _slave_ number,
592 o b (number) start _master_ number,
593 o s (number) animation status (0..1),
594 o dur (number) animation duration,
595 o spd (number) animation speed,
596 o get (function) getter of _master_ number (see @mina.time),
597 o set (function) setter of _slave_ number,
598 o easing (function) easing function, default is @mina.linear,
599 o status (function) status getter/setter,
600 o speed (function) speed getter/setter,
601 o duration (function) duration getter/setter,
602 o stop (function) animation stopper
603 o pause (function) pauses the animation
604 o resume (function) resumes the animation
605 o update (function) calles setter with the right value of the animation
606 o }
961 function is(o, type) {
964 return isFinite(o);
967 (o instanceof Array || Array.isArray && Array.isArray(o))) {
970 return (type == "null" && o === null) ||
971 (type == typeof o && o !== null) ||
972 (type == "object" && o === Object(o)) ||
973 objectToString.call(o).slice(8, -1).toLowerCase() == type;
1287 - o (…) any object or primitive
1347 o {
1348 o r (number) red,
1349 o g (number) green,
1350 o b (number) blue,
1351 o hex (string) color in HTML/CSS format: #••••••,
1352 o error (boolean) true if string can't be parsed
1353 o }
1469 Snap.rgb = cacher(function (r, g, b, o) {
1470 if (is(o, "finite")) {
1472 return "rgba(" + [round(r), round(g), round(b), +o.toFixed(2)] + ")";
1521 packageRGB = function (r, g, b, o) {
1529 opacity: is(o, "finite") ? o : 1,
1533 is(o, "finite") && (rgb.opacity = o);
1543 o {
1544 o r (number) red,
1545 o g (number) green,
1546 o b (number) blue,
1547 o hex (string) color in HTML/CSS format: #••••••,
1548 o error (boolean) `true` if string can't be parsed,
1549 o h (number) hue,
1550 o s (number) saturation,
1551 o v (number) value (brightness),
1552 o l (number) lightness
1553 o }
1600 o {
1601 o r (number) red,
1602 o g (number) green,
1603 o b (number) blue,
1604 o hex (string) color in HTML/CSS format: #••••••
1605 o }
1607 Snap.hsb2rgb = function (h, s, v, o) {
1611 o = h.o;
1625 return packageRGB(R, G, B, o);
1636 o {
1637 o r (number) red,
1638 o g (number) green,
1639 o b (number) blue,
1640 o hex (string) color in HTML/CSS format: #••••••
1641 o }
1643 Snap.hsl2rgb = function (h, s, l, o) {
1665 return packageRGB(R, G, B, o);
1676 o {
1677 o h (number) hue,
1678 o s (number) saturation,
1679 o b (number) brightness
1680 o }
1709 o {
1710 o h (number) hue,
1711 o s (number) saturation,
1712 o l (number) luminosity
1713 o }
1757 var paramCounts = {a: 7, c: 6, o: 2, h: 1, l: 2, m: 2, r: 4, q: 4, s: 4, t: 2, v: 1, u: 3, z: 0},
1774 if (name == "o" && params.length == 1) {
2385 function jsonFiller(root, o) {
2392 o.push(item);
2404 o {
2405 o type (string) this.type,
2406 o attr (object) attributes map,
2407 o childNodes (array) optional array of children in the same format
2408 o }
2677 o {
2678 o cx: (number) x of the center,
2679 o cy: (number) x of the center,
2680 o h: (number) height,
2681 o height: (number) height,
2682 o path: (string) path command for the box,
2683 o r0: (number) radius of a circle that fully encloses the box,
2684 o r1: (number) radius of the smallest circle that can be enclosed,
2685 o r2: (number) radius of the largest circle that can be enclosed,
2686 o vb: (string) box as a viewbox command,
2687 o w: (number) width,
2688 o width: (number) width,
2689 o x2: (number) x of the right side,
2690 o x: (number) x of the left side,
2691 o y2: (number) y of the bottom edge,
2692 o y: (number) y of the top edge
2693 o }
2777 o {
2778 o string (string) transform string,
2779 o globalMatrix (Matrix) matrix of all transformations applied to element or its parents,
2780 o localMatrix (Matrix) matrix of transformations applied only to the element,
2781 o diffMatrix (Matrix) matrix of difference between global and local transformations,
2782 o global (string) global transformation as string,
2783 o local (string) local transformation as string,
2784 o toString (function) returns `string` property
2785 o }
3343 o {
3344 o anim (object) animation object,
3345 o mina (object) @mina object,
3346 o curStatus (number) 0..1 — status of the animation: 0 — just started, 1 — just finished,
3347 o status (function) gets or sets the status of the animation,
3348 o stop (function) stops the animation
3349 o }
3384 o {
3385 o id (string) animation id, consider it read-only,
3386 o duration (function) gets or sets the duration of the animation,
3387 o easing (function) easing,
3388 o speed (function) gets or sets the speed of the animation,
3389 o status (function) gets or sets the status of the animation,
3390 o stop (function) stops the animation
3391 o }
3840 o dx (number) translation by x
3841 o dy (number) translation by y
3842 o scalex (number) scale by x
3843 o scaley (number) scale by y
3844 o shear (number) shear
3845 o rotate (number) rotation in deg
3846 o isSimple (boolean) could it be represented via simple transformations
6444 o {
6445 o x: (number) x coordinate,
6446 o y: (number) y coordinate,
6447 o alpha: (number) angle of derivative
6448 o }
6492 o {
6493 o x: (number) x coordinate,
6494 o y: (number) y coordinate,
6495 o alpha: (number) angle of derivative
6496 o }
6534 o {
6535 o x: (number) x coordinate of the point,
6536 o y: (number) y coordinate of the point,
6537 o m: {
6538 o x: (number) x coordinate of the left anchor,
6539 o y: (number) y coordinate of the left anchor
6540 o },
6541 o n: {
6542 o x: (number) x coordinate of the right anchor,
6543 o y: (number) y coordinate of the right anchor
6544 o },
6545 o start: {
6546 o x: (number) x coordinate of the start of the curve,
6547 o y: (number) y coordinate of the start of the curve
6548 o },
6549 o end: {
6550 o x: (number) x coordinate of the end of the curve,
6551 o y: (number) y coordinate of the end of the curve
6552 o },
6553 o alpha: (number) angle of the curve derivative at the point
6554 o }
6575 o {
6576 o x: (number) x coordinate of the left top point of the box,
6577 o y: (number) y coordinate of the left top point of the box,
6578 o x2: (number) x coordinate of the right bottom point of the box,
6579 o y2: (number) y coordinate of the right bottom point of the box,
6580 o width: (number) width of the box,
6581 o height: (number) height of the box
6582 o }
6665 o [
6666 o {
6667 o x: (number) x coordinate of the point,
6668 o y: (number) y coordinate of the point,
6669 o t1: (number) t value for segment of path1,
6670 o t2: (number) t value for segment of path2,
6671 o segment1: (number) order number for segment of path1,
6672 o segment2: (number) order number for segment of path2,
6673 o bez1: (array) eight coordinates representing beziér curve for the segment of path1,
6674 o bez2: (array) eight coordinates representing beziér curve for the segment of path2
6675 o }
6676 o ]
6704 o {
6705 o x: (number) x coordinate of the left top point of the box,
6706 o y: (number) y coordinate of the left top point of the box,
6707 o x2: (number) x coordinate of the right bottom point of the box,
6708 o y2: (number) y coordinate of the right bottom point of the box,
6709 o width: (number) width of the box,
6710 o height: (number) height of the box
6711 o }
7379 o,
7385 // o = dragi.el.paper.getElementByPoint(x, y);
7388 // o && eve("snap.drag.over." + dragi.el.id, dragi.el, o);
7674 o x (number) x position of the mouse
7675 o y (number) y position of the mouse
7676 o event (object) DOM event object
7678 o dx (number) shift by x from the start point
7679 o dy (number) shift by y from the start point
7680 o x (number) x position of the mouse
7681 o y (number) y position of the mouse
7682 o event (object) DOM event object
7684 o event (object) DOM event object