OK In progress...

This commit is contained in:
Kolan Sh 2018-01-22 13:13:45 +03:00
parent d867098745
commit 31beca41d7
1 changed files with 10 additions and 10 deletions

View File

@ -33,7 +33,7 @@ namespace CairoChart {
/** /**
* Left bound. * Left bound.
*/ */
public double x0 { public virtual double x0 {
get { get {
return _x0; return _x0;
} }
@ -45,7 +45,7 @@ namespace CairoChart {
/** /**
* Top bound. * Top bound.
*/ */
public double y0 { public virtual double y0 {
get { get {
return _y0; return _y0;
} }
@ -57,7 +57,7 @@ namespace CairoChart {
/** /**
* Right bound. * Right bound.
*/ */
public double x1 { public virtual double x1 {
get { get {
return _x1; return _x1;
} }
@ -69,7 +69,7 @@ namespace CairoChart {
/** /**
* Bottom bound. * Bottom bound.
*/ */
public double y1 { public virtual double y1 {
get { get {
return _y1; return _y1;
} }
@ -81,7 +81,7 @@ namespace CairoChart {
/** /**
* ``Place`` width. * ``Place`` width.
*/ */
public double width { public virtual double width {
get { get {
return _x1 - _x0; return _x1 - _x0;
} }
@ -93,7 +93,7 @@ namespace CairoChart {
/** /**
* ``Place`` height. * ``Place`` height.
*/ */
public double height { public virtual double height {
get { get {
return _y1 - _y0; return _y1 - _y0;
} }
@ -105,7 +105,7 @@ namespace CairoChart {
/** /**
* ``Place`` zoomed width. * ``Place`` zoomed width.
*/ */
public double zwidth { public virtual double zwidth {
get { get {
return zx1 - zx0; return zx1 - zx0;
} }
@ -117,7 +117,7 @@ namespace CairoChart {
/** /**
* ``Place`` zoomed height. * ``Place`` zoomed height.
*/ */
public double zheight { public virtual double zheight {
get { get {
return zy1 - zy0; return zy1 - zy0;
} }
@ -184,14 +184,14 @@ namespace CairoChart {
/** /**
* Gets a copy of the ``Chart``. * Gets a copy of the ``Chart``.
*/ */
public Place copy () { public virtual Place copy () {
return new Place.with_place(this); return new Place.with_place(this);
} }
/** /**
* Unzooms ``Place``. * Unzooms ``Place``.
*/ */
public void unzoom () { public virtual void unzoom () {
zx0 = x0; zx0 = x0;
zy0 = y0; zy0 = y0;
zx1 = x1; zx1 = x1;