From f60b3f474eed8ab2e5d1c909230c0ac4b474be13 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 19 Jan 2018 18:13:27 +0300 Subject: [PATCH] OK In progress... --- src/Point.vala | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Point.vala b/src/Point.vala index 31ed534..7985484 100644 --- a/src/Point.vala +++ b/src/Point.vala @@ -26,22 +26,24 @@ namespace CairoChart { } /** - * + * 128-bit point. */ public struct Point128 { /** - * + * X-coordinate. */ Float128 x; /** - * + * Y-coordinate. */ Float128 y; /** - * + * Constructs a new ``Point128``. + * @param x x-coordinate. + * @param y y-coordinate. */ public Point128 (Float128 x = 0.0, Float128 y = 0.0) { this.x = x; this.y = y;