Ejemplo n.º 1
0
 private void RenderAxis(AxisFormatParams format, Vector3 from, Vector3 to)
 {
     GL.Begin(GL.LINES);
     GL.Color(format.LineColor);
     GL.Vertex(from);
     GL.Vertex(to);
     GL.End();
 }
Ejemplo n.º 2
0
 public GraphFormatParams(string title, string xAxisLabel, string yAxisLabel)
 {
     this.Title = title;
     this.XAxis = new AxisFormatParams(xAxisLabel);
     this.YAxis = new AxisFormatParams(yAxisLabel);
 }