-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyGraph.cs
More file actions
31 lines (29 loc) · 904 Bytes
/
myGraph.cs
File metadata and controls
31 lines (29 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Decompiled with JetBrains decompiler
// Type: TransmissionLine.myGraph
// Assembly: TransmissionLine, Version=3.6.3.5, Culture=neutral, PublicKeyToken=null
// MVID: 92E11920-ED50-4C1F-99A1-3CFB7DCC3364
// Assembly location: C:\Users\Home\AppData\Local\Apps\2.0\477AE5HX.86E\PEE3MCH4.84B\tran..tion_127a55d62cc03faa_0003.0006_03fd5c6fef0309f2\TransmissionLine.exe
using System.Drawing;
namespace TransmissionLine
{
public struct myGraph
{
public string Title;
public string XLabel;
public string YLabel;
public double Xmin;
public double Xmax;
public double Ymin;
public double Ymax;
public bool XLog;
public bool YLog;
public int TopMargin;
public int BottomMargin;
public int LeftMargin;
public int RightMargin;
public GraphSeries Data;
public Bitmap GraphImage;
public int PreviousXLine;
public int[] PreviousYLine;
}
}