summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-10-26 18:18:04 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2016-10-27 00:03:01 +0200
commit1183e64fb387d51f219620ac7d9e28976ed1fdff (patch)
treebdb423d8153e6874294bb0502fb1fc132333f594
parent67282977a1857a1333873f502d30755fe9746066 (diff)
downloadefl-1183e64fb387d51f219620ac7d9e28976ed1fdff.tar.gz
docs: evas 3d: update and correct some docs for 3d object class
-rw-r--r--src/lib/evas/canvas/evas_canvas3d_object.eo9
1 files 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.]]
}