Cairo-Chart/src/Point.vala

11 lines
165 B
Vala
Raw Normal View History

2018-01-08 23:33:13 +03:00
namespace CairoChart {
2017-08-28 14:47:31 +03:00
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;
}
}
}