evas_canvas3d_node: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-03 17:08:54 +01:00
parent 418f68020f
commit db3bbe821f
1 changed files with 10 additions and 10 deletions

View File

@ -212,12 +212,12 @@ class Evas.Canvas3D.Node (Evas.Canvas3D.Object)
bounding_box_get{
[[Get axis-aligned bounding box (AABB) of the given node.]]
params {
@in x: Evas.Real *; [[Pointer to receive X coordinate of the first point of AABB.]]
@in y: Evas.Real *; [[Pointer to receive Y coordinate of the first point of AABB.]]
@in z: Evas.Real *; [[Pointer to receive Z coordinate of the first point of AABB.]]
@in x2: Evas.Real *; [[Pointer to receive X coordinate of the second point of AABB.]]
@in y2: Evas.Real *; [[Pointer to receive Y coordinate of the second point of AABB.]]
@in z2: Evas.Real *; [[Pointer to receive Z coordinate of the second point of AABB.]]
@in x: ptr(Evas.Real); [[Pointer to receive X coordinate of the first point of AABB.]]
@in y: ptr(Evas.Real); [[Pointer to receive Y coordinate of the first point of AABB.]]
@in z: ptr(Evas.Real); [[Pointer to receive Z coordinate of the first point of AABB.]]
@in x2: ptr(Evas.Real); [[Pointer to receive X coordinate of the second point of AABB.]]
@in y2: ptr(Evas.Real); [[Pointer to receive Y coordinate of the second point of AABB.]]
@in z2: ptr(Evas.Real); [[Pointer to receive Z coordinate of the second point of AABB.]]
}
}
@ -225,10 +225,10 @@ class Evas.Canvas3D.Node (Evas.Canvas3D.Object)
[[Get bounding sphere of the given node.]]
params {
@in x: Evas.Real *; [[Pointer to receive X coordinate of the center of sphere.]]
@in y: Evas.Real *; [[Pointer to receive Y coordinate of the center of sphere.]]
@in z: Evas.Real *; [[Pointer to receive Z coordinate of center of sphere.]]
@in r: Evas.Real *; [[Pointer to receive radius of center of sphere.]]
@in x: ptr(Evas.Real); [[Pointer to receive X coordinate of the center of sphere.]]
@in y: ptr(Evas.Real); [[Pointer to receive Y coordinate of the center of sphere.]]
@in z: ptr(Evas.Real); [[Pointer to receive Z coordinate of center of sphere.]]
@in r: ptr(Evas.Real); [[Pointer to receive radius of center of sphere.]]
}
}