Cairo-Chart/src/Point.vala

11 lines
157 B
Vala

namespace Gtk.CairoChart {
public struct Point {
Float128 x;
Float128 y;
public Point (Float128 x, Float128 y) {
this.x = x; this.y = y;
}
}
}