(string text, double x, double y,
int fontsize = 12, uint fontcolor = black)
| 172 | public readonly double posX; |
| 173 | public readonly double posY; |
| 174 | public TextInfo(string text, double x, double y, |
| 175 | int fontsize = 12, uint fontcolor = black) |
| 176 | { |
| 177 | this.text = text; |
| 178 | posX = x; |
| 179 | posY = y; |
| 180 | fontSize = fontsize; |
| 181 | fontColor = fontcolor; |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | private readonly struct PolyInfo |
nothing calls this directly
no outgoing calls
no test coverage detected