(float alpha, float[] a, float[] b, int dim)
| 1309 | r[i] = a[i] * (1 - alpha) + b[i] * alpha; |
| 1310 | return r; |
| 1311 | } |
| 1312 | |
| 1313 | @HiddenInAutocomplete |
| 1314 | public boolean renderToMesh(MeshBuilder m, int fixedSizeForCubic) { |
| 1315 | return renderToMesh(m, this::renderMoveTo, this::renderLineTo, renderCubicTo(fixedSizeForCubic)); |
| 1316 | } |
| 1317 | |
| 1318 | @HiddenInAutocomplete |
| 1319 | public Node renderMoveTo(MeshAcceptor m, Node from, MoveTo to) { |
| 1320 | boolean debugme = false; |
| 1321 | if (to.flatAuxData != null) for (int i = 0; i < to.flatAuxData.length; i++) { |
no outgoing calls
no test coverage detected