| 32 | } |
| 33 | |
| 34 | @Throws(IOException::class) |
| 35 | protected constructor() { |
| 36 | } |
| 37 | |
| 38 | @Throws(IOException::class) |
| 39 | constructor(filename: String) { |
| 40 | this.filename = filename |
| 41 | points = ArrayList() |
| 42 | |
| 43 | add(filename) |
| 44 | } |
| 45 | |
| 46 | var first = true |
| 47 | |
| 48 | fun show(layer: Stage.ShaderGroup, name: String, size: Float) { |
| 49 | val v = layer.pointBuilder(name) |
| 50 | |
| 51 | v.open() |