Cairo-Chart/src/Point.vala

11 lines
169 B
Vala
Raw Normal View History

2017-08-28 14:47:31 +03:00
namespace Gtk.CairoChart {
public struct Point {
Float128 x;
Float128 y;
public Point (Float128 x = 0.0, Float128 y = 0.0) {
2017-08-28 14:47:31 +03:00
this.x = x; this.y = y;
}
}
}