XY implements the XY method of the XYer interface.
(i int)
| 258 | |
| 259 | // XY implements the XY method of the XYer interface. |
| 260 | func (xy XYValues) XY(i int) (float32, float32) { |
| 261 | x, y, _ := xy.XYZ(i) |
| 262 | return x, y |
| 263 | } |
| 264 | |
| 265 | ////////////////////////////////////////////////// |
| 266 | // Labeler |