This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $:note("c2 d2 e2 g2").sound("supersaw").slow(2) | |
| $:chord("<Am C D F Am E Am E>").voicing().sound("supersaw") | |
| $:s("bd sd bd sd") | |
| $:s("<hh*32 hh*8 hh*16 hh*4>").gain(1.6) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://blog.ninja-squad.com/2015/07/21/what-is-new-angularjs-1.4/ | |
| angular.module('docs', []) | |
| .controller('Ctrl', ['$scope', function($scope) {}]) | |
| .directive('myCustomer', ['$http', '$q', function($http, $q) { | |
| return { | |
| restrict: 'E', | |
| controllerAs: 'vm', | |
| controller: function(){ | |
| this.xs = []; | |
| this.selected = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| // viewZoomTransform состоит из двух этапов: | |
| // - viewTransform трансформирует референсый вьюпорт в модельных | |
| // в референсный вьюпорт в экранных | |
| // - zoomTransform трансформирует | |
| // | |
| // - "модельный" вьюпорт - перемещается зумом | |
| // - "референсный модельный" вьюпорт - постоянен | |
| // - "экранный" вьюпорт - постоянен | |
| "use strict"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| "use strict"; | |
| var d3 = require('d3'); | |
| function drawProc(f) { | |
| var requested = false; | |
| return function () { | |
| var params = []; | |
| for (var _i = 0; _i < arguments.length; _i++) { | |
| params[_i - 0] = arguments[_i]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| "use strict"; | |
| var d3 = require('d3'); | |
| function drawProc(f) { | |
| var requested = false; | |
| return function () { | |
| var params = []; | |
| for (var _i = 0; _i < arguments.length; _i++) { | |
| params[_i - 0] = arguments[_i]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| "use strict"; | |
| (function (Orientation) { | |
| Orientation[Orientation["Top"] = 0] = "Top"; | |
| Orientation[Orientation["Right"] = 1] = "Right"; | |
| Orientation[Orientation["Bottom"] = 2] = "Bottom"; | |
| Orientation[Orientation["Left"] = 3] = "Left"; | |
| })(exports.Orientation || (exports.Orientation = {})); | |
| var Orientation = exports.Orientation; | |
| var slice = Array.prototype.slice; |