()
| 33 | |
| 34 | export class Slide{ |
| 35 | constructor(){ |
| 36 | |
| 37 | var slide=this; |
| 38 | // this.maxLayers=5; |
| 39 | this.buttonContainer = new PIXI.Container(); |
| 40 | this.textbuttonContainer = new PIXI.Container(); |
| 41 | |
| 42 | this.inputContainer = new PIXI.Container(); |
| 43 | this.neuronContainer = new PIXI.Container(); |
| 44 | this.neuronBases = new PIXI.Container(); |
| 45 | this.neuronBases.name = "neuronBases"; |
| 46 | this.neuronOvers = new PIXI.Container(); |
| 47 | this.neuronOvers.name = "neuronOvers"; |
| 48 | this.neuronSensors = new PIXI.Container(); |
| 49 | this.weightsContainer = new PIXI.Container(); |
| 50 | |
| 51 | this.labelsContainer = new PIXI.Container(); |
| 52 | this.arrowContainer = new PIXI.Container(); |
| 53 | |
| 54 | |
| 55 | this.costLabel = new PIXI.Container(); |
| 56 | |
| 57 | this.textcount = 0; |
| 58 | this.textContainer = new PIXI.Container(); |
| 59 | this.graphContainer = new PIXI.Container(); |
| 60 | this.slideContainer=new PIXI.Container(); |
| 61 | |
| 62 | this.slideContainer.addChild( |
| 63 | |
| 64 | this.weightsContainer, |
| 65 | this.labelsContainer, |
| 66 | this.buttonContainer, |
| 67 | this.neuronContainer, |
| 68 | this.arrowContainer, |
| 69 | this.textContainer, |
| 70 | this.inputContainer, |
| 71 | this.costLabel, |
| 72 | this.graphContainer, |
| 73 | this.textbuttonContainer, |
| 74 | ); |
| 75 | |
| 76 | } |
| 77 | |
| 78 | |
| 79 | formatList(list){ |
nothing calls this directly
no outgoing calls
no test coverage detected