(boolean normalized)
| 2595 | } |
| 2596 | |
| 2597 | double drawPlotLine(boolean normalized) { |
| 2598 | double x1 = getFirstArg(); |
| 2599 | double y1 = getNextArg(); |
| 2600 | double x2 = getNextArg(); |
| 2601 | double y2 = getLastArg(); |
| 2602 | if (normalized) |
| 2603 | plot.drawNormalizedLine(x1, y1, x2, y2); |
| 2604 | else |
| 2605 | plot.drawLine(x1, y1, x2, y2); |
| 2606 | return Double.NaN; |
| 2607 | } |
| 2608 | |
| 2609 | double drawPlotVectors() { |
| 2610 | double[] x1 = getFirstArray(); |
no test coverage detected