We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2645e03 commit 7e232e8Copy full SHA for 7e232e8
1 file changed
Source/Napari.cs
@@ -35,9 +35,9 @@ private class CsvRow
35
public double VertexIndex { get; set; }
36
public double Axis0 { get; set; } // T coordinate (Time)
37
public double Axis1 { get; set; } // Z coordinate
38
- public double Axis2 { get; set; } // C coordinate (Channel)
39
- public double Axis3 { get; set; } // X coordinate (if 5-axis) OR Y coordinate (if 4-axis)
40
- public double Axis4 { get; set; } // Y coordinate (if 5-axis only)
+ public double Axis2 { get; set; } // C coordinate (Channel) OR Y coordinate (if 4-axis only)
+ public double Axis3 { get; set; } // Y coordinate (if 5-axis only) OR X coordinate (if 4-axis)
+ public double Axis4 { get; set; } // X coordinate (if 5-axis)
41
public bool HasTimeAxis { get; set; } // True if 5-axis format (ZCT)
42
}
43
0 commit comments