11 lines
165 B
Vala
11 lines
165 B
Vala
namespace CairoChart {
|
|
public struct Point {
|
|
Float128 x;
|
|
Float128 y;
|
|
|
|
public Point (Float128 x = 0.0, Float128 y = 0.0) {
|
|
this.x = x; this.y = y;
|
|
}
|
|
}
|
|
}
|