source: js/viewer-f0/js/Structures/Neuro.js @ 161

Last change on this file since 161 was 161, checked in by mmichalski, 10 years ago

Draw neuron like in canvasutil

File size: 291 bytes
Line 
1function Neuro() {
2
3}
4
5
6Neuro.prototype = new Model();
7
8Neuro.prototype.getSchemeID = function(){
9    var type = this._properties["d"]["VALUE"];
10    type = type.replace("\"","");
11    var index = type.indexOf(":");
12    if(index != -1)
13        type = type.substr(0, index);
14
15    return type;
16}
Note: See TracBrowser for help on using the repository browser.