OK In progress...

This commit is contained in:
Kolan Sh 2018-01-19 18:13:27 +03:00
parent 776ff5e01b
commit f60b3f474e
1 changed files with 6 additions and 4 deletions

View File

@ -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;