From 1183e64fb387d51f219620ac7d9e28976ed1fdff Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Wed, 26 Oct 2016 18:18:04 +0200 Subject: [PATCH] docs: evas 3d: update and correct some docs for 3d object class --- src/lib/evas/canvas/evas_canvas3d_object.eo | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/lib/evas/canvas/evas_canvas3d_object.eo b/src/lib/evas/canvas/evas_canvas3d_object.eo index 204c808c75..2287abe93c 100644 --- a/src/lib/evas/canvas/evas_canvas3d_object.eo +++ b/src/lib/evas/canvas/evas_canvas3d_object.eo @@ -2,6 +2,7 @@ import evas_types; class Evas.Canvas3D.Object (Efl.Object) { + [[Evas 3D canvas object class]] data: Evas_Canvas3D_Object_Data; methods { change { @@ -13,19 +14,19 @@ class Evas.Canvas3D.Object (Efl.Object) } type_get @const { [[Returns the type of the object.]] - return: Evas.Canvas3D.Object_Type; + return: Evas.Canvas3D.Object_Type; [[Object type]] } type_set { - [[Returns the type of the object.]] + [[Sets the type of the object.]] params{ - @in type: Evas.Canvas3D.Object_Type; + @in type: Evas.Canvas3D.Object_Type; [[Object type]] } } dirty_get @const { [[Returns the status of a particular state of the object.]] - return: bool; + return: bool; [[$true if the status is dirty, $false otherwise]] params { @in state: Evas.Canvas3D.State; [[State whose status is being asked.]] }