Skip to content

Commit 62cbb96

Browse files
committed
fixup comment
1 parent 26a57ea commit 62cbb96

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/main/java/com/babai/ssplot/math/plot/Plotter.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,9 @@ private void plotData(PlotData pdata) {
8282
for (Vector<Double> row : dataset) {
8383
switch(pdata.getPlotType()) {
8484
case VFIELD -> {
85-
/* For now, it works for vector data in first four columns only */
85+
// For now, it works for vector data in first four columns only
86+
// TODO custom column mapping
8687
if (row.size() >= 4) {
87-
// TODO data mapping for 4 col Vfield data
88-
// currently always first 4 cols will be used
8988
p1 = canv.getTransformedPoint(new Point2D.Double(row.get(0), row.get(1)));
9089
p2 = canv.getTransformedPoint(new Point2D.Double(row.get(2), row.get(3)));
9190

0 commit comments

Comments
 (0)