summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 69842b1..c20c268 100644
--- a/README.md
+++ b/README.md
@@ -551,6 +551,17 @@ draw.has(rect) //-> returns true
group.has(rect) //-> returns false
```
+### index()
+Returns the index of given element and retuns -1 when it is not a child:
+
+```javascript
+var rect = draw.rect(100, 50)
+var group = draw.group()
+
+draw.index(rect) //-> returns 0
+group.index(rect) //-> returns -1
+```
+
### get()
Get an element on a given position in the children array:
@@ -1513,6 +1524,13 @@ Determine if an element is member of the set:
set.has(rect) //-> returns true of false
```
+### index()
+Returns the index of a given element in the set.
+
+```javascript
+set.index(rect) //-> -1 if element is not a member
+```
+
### get()
Get the element at a given index: