From: Alexandre Terrasa Date: Fri, 12 Dec 2014 20:10:39 +0000 (-0500) Subject: lib/scene2d: fixes documentation warnings X-Git-Tag: v0.7.1~39^2~1 X-Git-Url: http://nitlanguage.org lib/scene2d: fixes documentation warnings Signed-off-by: Alexandre Terrasa --- diff --git a/lib/scene2d.nit b/lib/scene2d.nit index 12167c9..aa567e8 100644 --- a/lib/scene2d.nit +++ b/lib/scene2d.nit @@ -48,9 +48,16 @@ class Sprite # height of the sprite var height: Int = 100 is writable + # X coordinate of left side. fun left: Int do return x - width/2 + + # X coordinate of right side. fun right: Int do return x + width/2 + + # Y coordinate of top. fun top: Int do return y - height/2 + + # Y coordinate of bottom. fun bottom: Int do return y + height/2 # x velocity (applied by `update')