docs: evas 3d: update and correct some docs for 3d object class

This commit is contained in:
Stefan Schmidt 2016-10-26 18:18:04 +02:00
parent 67282977a1
commit 1183e64fb3
1 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@ import evas_types;
class Evas.Canvas3D.Object (Efl.Object) class Evas.Canvas3D.Object (Efl.Object)
{ {
[[Evas 3D canvas object class]]
data: Evas_Canvas3D_Object_Data; data: Evas_Canvas3D_Object_Data;
methods { methods {
change { change {
@ -13,19 +14,19 @@ class Evas.Canvas3D.Object (Efl.Object)
} }
type_get @const { type_get @const {
[[Returns the type of the object.]] [[Returns the type of the object.]]
return: Evas.Canvas3D.Object_Type; return: Evas.Canvas3D.Object_Type; [[Object type]]
} }
type_set { type_set {
[[Returns the type of the object.]] [[Sets the type of the object.]]
params{ params{
@in type: Evas.Canvas3D.Object_Type; @in type: Evas.Canvas3D.Object_Type; [[Object type]]
} }
} }
dirty_get @const { dirty_get @const {
[[Returns the status of a particular state of the object.]] [[Returns the status of a particular state of the object.]]
return: bool; return: bool; [[$true if the status is dirty, $false otherwise]]
params { params {
@in state: Evas.Canvas3D.State; [[State whose status is being asked.]] @in state: Evas.Canvas3D.State; [[State whose status is being asked.]]
} }