Fxxkrobotics commited on
Commit
2bb55ef
·
verified ·
1 Parent(s): 5a6766e

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .github/ISSUE_TEMPLATE/bug-report.yml +53 -0
  2. .github/ISSUE_TEMPLATE/feature-request.yml +38 -0
  3. .github/PULL_REQUEST_TEMPLATE.md +35 -0
  4. .github/workflows/pre-commit.yaml +14 -0
  5. .github/workflows/run-tests.yaml +61 -0
  6. .github/workflows/update-docs.yaml +63 -0
  7. .github/workflows/update-pypi.yaml +63 -0
  8. objects/.DS_Store +0 -0
  9. objects/.gitattributes +65 -0
  10. objects/.gitignore +6 -0
  11. objects/001_bottle/model_data0.json +367 -0
  12. objects/001_bottle/model_data1.json +367 -0
  13. objects/001_bottle/model_data10.json +259 -0
  14. objects/001_bottle/model_data11.json +259 -0
  15. objects/001_bottle/model_data12.json +367 -0
  16. objects/001_bottle/model_data13.json +367 -0
  17. objects/001_bottle/model_data14.json +367 -0
  18. objects/001_bottle/model_data15.json +367 -0
  19. objects/001_bottle/model_data16.json +367 -0
  20. objects/001_bottle/model_data17.json +367 -0
  21. objects/001_bottle/model_data18.json +367 -0
  22. objects/001_bottle/model_data19.json +367 -0
  23. objects/001_bottle/model_data2.json +367 -0
  24. objects/001_bottle/model_data20.json +367 -0
  25. objects/001_bottle/model_data21.json +367 -0
  26. objects/001_bottle/model_data22.json +343 -0
  27. objects/001_bottle/model_data3.json +259 -0
  28. objects/001_bottle/model_data4.json +367 -0
  29. objects/001_bottle/model_data5.json +367 -0
  30. objects/001_bottle/model_data6.json +367 -0
  31. objects/001_bottle/model_data7.json +367 -0
  32. objects/001_bottle/model_data8.json +367 -0
  33. objects/001_bottle/model_data9.json +367 -0
  34. objects/001_bottle/points_info.json +16 -0
  35. objects/004_fluted-block/collision/base0.glb +0 -0
  36. objects/004_fluted-block/collision/base1.glb +0 -0
  37. objects/004_fluted-block/model_data0.json +100 -0
  38. objects/004_fluted-block/model_data1.json +100 -0
  39. objects/004_fluted-block/visual/base0.glb +0 -0
  40. objects/004_fluted-block/visual/base1.glb +0 -0
  41. objects/017_calculator/model_data0.json +13 -0
  42. objects/017_calculator/model_data1.json +13 -0
  43. objects/017_calculator/model_data2.json +13 -0
  44. objects/017_calculator/model_data3.json +13 -0
  45. objects/017_calculator/model_data4.json +13 -0
  46. objects/017_calculator/model_data5.json +13 -0
  47. objects/017_calculator/points_info.json +4 -0
  48. objects/026_pet-collar/model_data1.json +13 -0
  49. objects/079_remotecontrol/collision/base0.glb +0 -0
  50. objects/079_remotecontrol/collision/base1.glb +0 -0
.github/ISSUE_TEMPLATE/bug-report.yml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "\U0001F41B Bug Report"
2
+ description: Help us improve Robosuite by submitting a bug report!
3
+ body:
4
+ - type: markdown
5
+ attributes:
6
+ value: |
7
+ Thanks submitting a bug report!
8
+
9
+ - type: textarea
10
+ id: system-info
11
+ attributes:
12
+ label: System Info
13
+ description: Which version of Robosuite are you using? Which OS (e.g., Ubuntu, MacOS, Windows) are you using? If you think it'll help, you can also share the output of `pip list`.
14
+ render: Shell
15
+ placeholder: Robosuite version, OS.
16
+ validations:
17
+ required: true
18
+
19
+ - type: textarea
20
+ id: information-scripts-examples
21
+ attributes:
22
+ label: Information
23
+ description: 'The problem arises when running ABC; the error message is XYZ'
24
+ placeholder: |
25
+ ```
26
+ import robosuite
27
+ print(robosuite.__version__)
28
+ print("Tested script")
29
+ ```
30
+
31
+ - type: textarea
32
+ id: reproduction
33
+ validations:
34
+ required: true
35
+ attributes:
36
+ label: Reproduction
37
+ description: |
38
+ If possible, provide a minimal code sample or script that reproduces the problem you ran into.
39
+ Please use code tags to correctly format your code: https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting
40
+ Please avoid screenshots, as they don't allow copy-and-pasting.
41
+
42
+ placeholder: |
43
+ Steps to reproduce the behavior:
44
+ 1. Run the above provided code-snippet `python example_script.py`
45
+ 2. ...
46
+
47
+ - type: textarea
48
+ id: expected-behavior
49
+ validations:
50
+ required: false
51
+ attributes:
52
+ label: Expected behavior
53
+ description: "A clear and concise description of what you would expect to happen."
.github/ISSUE_TEMPLATE/feature-request.yml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: 🛠️ Feature Request
3
+ description: Suggest an idea to help us improve Robosuite!
4
+ title: "[Feature]: "
5
+ labels:
6
+ - "ty:feature"
7
+
8
+ body:
9
+ - type: markdown
10
+ attributes:
11
+ value: >
12
+ **Thanks for taking the time to fill out this feature request report! :heart:** Please double check if an issue
13
+ [already exists](https://github.com/ARISE-Initiative/robosuite-dev/issues) for
14
+ your feature.
15
+
16
+ We are also happy to accept contributions from our users. For more details see
17
+ [here](https://github.com/ARISE-Initiative/robosuite-dev/blob/master/CONTRIBUTING.md).
18
+
19
+ - type: textarea
20
+ attributes:
21
+ label: Description
22
+ description: |
23
+ A clear and concise description of the feature you're interested in.
24
+ value: |
25
+ <!--- Describe your feature here --->
26
+ validations:
27
+ required: true
28
+
29
+ - type: textarea
30
+ attributes:
31
+ label: Suggested Solution
32
+ description: >
33
+ Describe the solution you'd like. A clear and concise description of what you want to happen. If you have
34
+ considered alternatives, please describe them.
35
+ value: |
36
+ <!--- Describe your solution here --->
37
+ validations:
38
+ required: false
.github/PULL_REQUEST_TEMPLATE.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## What this does
2
+ Explain what this PR does. Feel free to tag your PR with the appropriate label(s).
3
+
4
+ Examples:
5
+ | Title | Label |
6
+ |----------------------|-----------------|
7
+ | Fixes #[issue] | (🐛 Bug) |
8
+ | Optimizes something | (⚡️ Performance) |
9
+ | Adds a new feature | (✨ Feature) |
10
+
11
+
12
+ ## How it was tested
13
+ Explain/show how you tested your changes.
14
+
15
+ Examples:
16
+ - Added `test_something` in `tests/test_stuff.py`.
17
+ - Added `new_feature` and checked that training converges with policy X on dataset/environment Y.
18
+ - Optimized `some_function`, it now runs X times faster than previously.
19
+
20
+ ## How to checkout & try? (for the reviewer)
21
+ Provide a simple way for the reviewer to try out your changes.
22
+
23
+ Examples:
24
+ ```bash
25
+ DATA_DIR=tests/data pytest -sx tests/test_stuff.py::test_something
26
+ ```
27
+ ```bash
28
+ python robosuite/scripts/train.py --some.option=true
29
+ ```
30
+
31
+ ## SECTION TO REMOVE BEFORE SUBMITTING YOUR PR
32
+ **Note**: Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
33
+ members/contributors who may be interested in your PR. Try to avoid tagging more than 3 people.
34
+
35
+ **Note**: Before submitting this PR, please read the [contributor guideline](https://github.com/ARISE-Initiative/robosuite/blob/master/CONTRIBUTING.md).
.github/workflows/pre-commit.yaml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: pre-commit
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches: [master]
7
+
8
+ jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-python@v3
14
+ - uses: pre-commit/action@v3.0.0
.github/workflows/run-tests.yaml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: run-tests
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main", "master" ]
6
+ pull_request:
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ jobs:
12
+ build:
13
+
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - name: Set up Python 3.10
19
+ uses: actions/setup-python@v3
20
+ with:
21
+ python-version: "3.10"
22
+ - name: Install dependencies
23
+ run: |
24
+ sudo apt-cache search mesa
25
+ sudo apt update
26
+ sudo apt install -y libglx-mesa0 libgl1-mesa-dev libosmesa6-dev python3-opengl mesa-utils
27
+
28
+ # check if OSMesa is installed
29
+ dpkg -L libosmesa6-dev
30
+ python -m pip install --upgrade pip
31
+ pip install flake8 pytest
32
+
33
+ # Install the current repo. We explictly install mink as it's supposed to be in requirements-extra, but we need it for passing CI test.
34
+ - name: Install robosuite
35
+ run: |
36
+ pip install -e .
37
+ if [ -f requirements.txt ]; then
38
+ pip install -r requirements.txt
39
+ pip install mink==0.0.5
40
+ fi
41
+ if [ -f requirements-extra.txt ]; then
42
+ pip install -r requirements-extra.txt
43
+ pip uninstall -y robosuite-models
44
+ fi
45
+ - name: Lint with flake8
46
+ run: |
47
+ # stop the build if there are Python syntax errors or undefined names
48
+ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
49
+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
50
+ flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
51
+
52
+ # Run the specified tests
53
+ # NOTE: custom environment variable MUJOCO_GL="osmesa" is used to run tests without a display
54
+ # https://github.com/google-deepmind/dm_control/issues/136
55
+ # https://github.com/ARISE-Initiative/robosuite/issues/469
56
+ - name: Test with pytest
57
+ run: |
58
+ export PYOPENGL_PLATFORM="osmesa"
59
+ export MUJOCO_GL="osmesa"
60
+ export NUMBA_DISABLE_JIT=1
61
+ pytest
.github/workflows/update-docs.yaml ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Update Docs and Deploy
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - main
8
+ - ci-docs
9
+
10
+ jobs:
11
+ update-docs:
12
+ name: Generate and Deploy Docs
13
+ runs-on: ubuntu-latest
14
+
15
+ steps:
16
+ # Checkout the repository
17
+ - name: Checkout Code
18
+ uses: actions/checkout@v3
19
+
20
+ # Set up Python environment
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v4
23
+ with:
24
+ python-version: '3.11'
25
+
26
+ # Install dependencies
27
+ - name: Install Dependencies
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install -r requirements.txt
31
+ pip install sphinx sphinx_book_theme sphinx_markdown_tables recommonmark nbsphinx sphinx_togglebutton hidapi
32
+
33
+ # Build the documentation
34
+ - name: Build Docs
35
+ run: |
36
+ cd docs
37
+ make clean html
38
+ mv _build ..
39
+
40
+ # Deploy to GitHub Pages
41
+ - name: Deploy to GitHub Pages
42
+ uses: peaceiris/actions-gh-pages@v3
43
+ with:
44
+ github_token: ${{ secrets.GITHUB_TOKEN }}
45
+ publish_dir: _build/html
46
+ destination_dir: docs
47
+
48
+ # Remove .nojekyll from root directory if it exists
49
+ - name: Remove .nojekyll file
50
+ run: |
51
+ git config --global user.name "github-actions[bot]"
52
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
53
+ git fetch origin gh-pages
54
+ git checkout gh-pages
55
+ if [ -f .nojekyll ]; then
56
+ rm .nojekyll
57
+ git add .nojekyll
58
+ git commit -m "Remove .nojekyll file"
59
+ git push origin gh-pages
60
+ echo ".nojekyll file removed"
61
+ else
62
+ echo ".nojekyll file does not exist, skipping."
63
+ fi
.github/workflows/update-pypi.yaml ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - 'pypi-action'
8
+ release:
9
+ types: [published]
10
+
11
+ permissions:
12
+ contents: read
13
+
14
+ jobs:
15
+ build:
16
+ name: Build distribution
17
+ runs-on: ubuntu-latest
18
+
19
+ steps:
20
+ # Checkout the repository
21
+ - name: Checkout code
22
+ uses: actions/checkout@v4
23
+
24
+ # Set up Python environment
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v5
27
+ with:
28
+ python-version: '3.x'
29
+
30
+ # Install dependencies
31
+ - name: Build release distribution
32
+ run: |
33
+ python -m pip install --upgrade pip
34
+ python -m pip install build
35
+ python -m build
36
+
37
+ - name: Store the distribution packages
38
+ uses: actions/upload-artifact@v4
39
+ with:
40
+ name: release-dists
41
+ path: dist/
42
+
43
+ publish-to-pypi:
44
+ name: Publish Python distribution to PyPI
45
+ needs:
46
+ - build
47
+ runs-on: ubuntu-latest
48
+
49
+ environment:
50
+ name: pypi
51
+ url: https://pypi.org/p/robosuite/
52
+
53
+ permissions:
54
+ id-token: write # IMPORTANT: mandatory for trusted publishing
55
+
56
+ steps:
57
+ - name: Download the dists
58
+ uses: actions/download-artifact@v4
59
+ with:
60
+ name: release-dists
61
+ path: dist/
62
+ - name: Publish distribution to PyPI
63
+ uses: pypa/gh-action-pypi-publish@release/v1
objects/.DS_Store ADDED
Binary file (6.15 kB). View file
 
objects/.gitattributes ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
12
+ *.mds filter=lfs diff=lfs merge=lfs -text
13
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
14
+ *.model filter=lfs diff=lfs merge=lfs -text
15
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
16
+ *.npy filter=lfs diff=lfs merge=lfs -text
17
+ *.npz filter=lfs diff=lfs merge=lfs -text
18
+ *.onnx filter=lfs diff=lfs merge=lfs -text
19
+ *.ot filter=lfs diff=lfs merge=lfs -text
20
+ *.parquet filter=lfs diff=lfs merge=lfs -text
21
+ *.pb filter=lfs diff=lfs merge=lfs -text
22
+ *.pickle filter=lfs diff=lfs merge=lfs -text
23
+ *.pkl filter=lfs diff=lfs merge=lfs -text
24
+ *.pt filter=lfs diff=lfs merge=lfs -text
25
+ *.pth filter=lfs diff=lfs merge=lfs -text
26
+ *.rar filter=lfs diff=lfs merge=lfs -text
27
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
28
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
29
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
30
+ *.tar filter=lfs diff=lfs merge=lfs -text
31
+ *.tflite filter=lfs diff=lfs merge=lfs -text
32
+ *.tgz filter=lfs diff=lfs merge=lfs -text
33
+ *.wasm filter=lfs diff=lfs merge=lfs -text
34
+ *.xz filter=lfs diff=lfs merge=lfs -text
35
+ *.zip filter=lfs diff=lfs merge=lfs -text
36
+ *.zst filter=lfs diff=lfs merge=lfs -text
37
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
38
+ # Audio files - uncompressed
39
+ *.pcm filter=lfs diff=lfs merge=lfs -text
40
+ *.sam filter=lfs diff=lfs merge=lfs -text
41
+ *.raw filter=lfs diff=lfs merge=lfs -text
42
+ # Audio files - compressed
43
+ *.aac filter=lfs diff=lfs merge=lfs -text
44
+ *.flac filter=lfs diff=lfs merge=lfs -text
45
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
46
+ *.ogg filter=lfs diff=lfs merge=lfs -text
47
+ *.wav filter=lfs diff=lfs merge=lfs -text
48
+ # Image files - uncompressed
49
+ *.bmp filter=lfs diff=lfs merge=lfs -text
50
+ *.gif filter=lfs diff=lfs merge=lfs -text
51
+ *.png filter=lfs diff=lfs merge=lfs -text
52
+ *.tiff filter=lfs diff=lfs merge=lfs -text
53
+ # Image files - compressed
54
+ *.jpg filter=lfs diff=lfs merge=lfs -text
55
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
56
+ *.webp filter=lfs diff=lfs merge=lfs -text
57
+ # Video files - compressed
58
+ *.mp4 filter=lfs diff=lfs merge=lfs -text
59
+ *.webm filter=lfs diff=lfs merge=lfs -text
60
+ # Model files
61
+ *.glb filter=lfs diff=lfs merge=lfs -text
62
+ *.obj filter=lfs diff=lfs merge=lfs -text
63
+ *.STL filter=lfs diff=lfs merge=lfs -text
64
+ *.stl filter=lfs diff=lfs merge=lfs -text
65
+ *.dae filter=lfs diff=lfs merge=lfs -text
objects/.gitignore ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ **/decompose_cache/*
2
+ _script/*
3
+ /_copy_to.sh
4
+ /.vscode
5
+ /cube
6
+ /vis_box
objects/001_bottle/model_data0.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.00020988857525049896,
4
+ 0.9646134421466613,
5
+ 0.000265579558100103
6
+ ],
7
+ "extents": [
8
+ 0.7311879114607864,
9
+ 1.9300504196885258,
10
+ 0.7278375376112497
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9487648192335866
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9487648192335866
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9487648192335866
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9487648192335866
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9487648192335866
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9487648192335866
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9487648192335866
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9487648192335866
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9487648192335866
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9487648192335866
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8975296384671732
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data1.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.00022719200238345953,
4
+ 0.9649126765114798,
5
+ 0.0008705590210578212
6
+ ],
7
+ "extents": [
8
+ 0.6916870569632476,
9
+ 1.9303529273203575,
10
+ 0.685585818778398
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.950504765229936
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.950504765229936
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.950504765229936
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.950504765229936
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.950504765229936
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.950504765229936
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.950504765229936
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.950504765229936
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.950504765229936
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.950504765229936
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.901009530459872
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data10.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -5.2196355139897245e-06,
4
+ 0.9652236477677474,
5
+ 6.703540626740448e-05
6
+ ],
7
+ "extents": [
8
+ 0.588751103681373,
9
+ 1.930564376994578,
10
+ 0.5859638860516089
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.948301549251603
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.948301549251603
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.948301549251603
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.948301549251603
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.948301549251603
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ]
150
+ ],
151
+ "transform_matrix": [
152
+ [
153
+ 1.0,
154
+ 0.0,
155
+ 0.0,
156
+ 0.0
157
+ ],
158
+ [
159
+ 0.0,
160
+ 1.0,
161
+ 0.0,
162
+ 0.0
163
+ ],
164
+ [
165
+ -0.0,
166
+ 0.0,
167
+ 1.0,
168
+ 0.0
169
+ ],
170
+ [
171
+ 0.0,
172
+ 0.0,
173
+ 0.0,
174
+ 1.0
175
+ ]
176
+ ],
177
+ "functional_matrix": [
178
+ [
179
+ [
180
+ 1.0,
181
+ 0.0,
182
+ 0.0,
183
+ 0.0
184
+ ],
185
+ [
186
+ 0.0,
187
+ 6.123233995736766e-17,
188
+ -1.0,
189
+ 0.948301549251603
190
+ ],
191
+ [
192
+ 0.0,
193
+ 1.0,
194
+ 6.123233995736766e-17,
195
+ 0.0
196
+ ],
197
+ [
198
+ 0.0,
199
+ 0.0,
200
+ 0.0,
201
+ 1.0
202
+ ]
203
+ ]
204
+ ],
205
+ "orientation_point": [
206
+ [
207
+ 1.0,
208
+ 0.0,
209
+ 0.0,
210
+ 0.0
211
+ ],
212
+ [
213
+ 0.0,
214
+ 1.0,
215
+ 0.0,
216
+ 1.896603098503206
217
+ ],
218
+ [
219
+ 0.0,
220
+ 0.0,
221
+ 1.0,
222
+ 0.0
223
+ ],
224
+ [
225
+ 0.0,
226
+ 0.0,
227
+ 0.0,
228
+ 1.0
229
+ ]
230
+ ],
231
+ "contact_points_group": [
232
+ [
233
+ 0,
234
+ 1,
235
+ 2,
236
+ 3,
237
+ 4,
238
+ 5,
239
+ 6,
240
+ 7
241
+ ]
242
+ ],
243
+ "contact_points_mask": [
244
+ true
245
+ ],
246
+ "contact_points_discription": [
247
+ "Grasping the side of the bottle.",
248
+ "Grasping the side of the bottle.",
249
+ "Grasping the side of the bottle.",
250
+ "Grasping the side of the bottle."
251
+ ],
252
+ "target_point_discription": [
253
+ "The center of the bottle."
254
+ ],
255
+ "functional_point_discription": [
256
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
257
+ ],
258
+ "stable": true
259
+ }
objects/001_bottle/model_data11.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -2.4262850257368458e-05,
4
+ 0.8388528265348677,
5
+ -0.00011266960974656136
6
+ ],
7
+ "extents": [
8
+ 0.4993995455270008,
9
+ 1.6778490264284942,
10
+ 0.49327943211745157
11
+ ],
12
+ "scale": [
13
+ 0.155,
14
+ 0.155,
15
+ 0.155
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.8241185306297152
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.8241185306297152
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.8241185306297152
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.8241185306297152
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.8241185306297152
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ]
150
+ ],
151
+ "transform_matrix": [
152
+ [
153
+ 1.0,
154
+ 0.0,
155
+ 0.0,
156
+ 0.0
157
+ ],
158
+ [
159
+ 0.0,
160
+ 1.0,
161
+ 0.0,
162
+ 0.0
163
+ ],
164
+ [
165
+ -0.0,
166
+ 0.0,
167
+ 1.0,
168
+ 0.0
169
+ ],
170
+ [
171
+ 0.0,
172
+ 0.0,
173
+ 0.0,
174
+ 1.0
175
+ ]
176
+ ],
177
+ "functional_matrix": [
178
+ [
179
+ [
180
+ 1.0,
181
+ 0.0,
182
+ 0.0,
183
+ 0.0
184
+ ],
185
+ [
186
+ 0.0,
187
+ 6.123233995736766e-17,
188
+ -1.0,
189
+ 0.8241185306297152
190
+ ],
191
+ [
192
+ 0.0,
193
+ 1.0,
194
+ 6.123233995736766e-17,
195
+ 0.0
196
+ ],
197
+ [
198
+ 0.0,
199
+ 0.0,
200
+ 0.0,
201
+ 1.0
202
+ ]
203
+ ]
204
+ ],
205
+ "orientation_point": [
206
+ [
207
+ 1.0,
208
+ 0.0,
209
+ 0.0,
210
+ 0.0
211
+ ],
212
+ [
213
+ 0.0,
214
+ 1.0,
215
+ 0.0,
216
+ 1.6482370612594304
217
+ ],
218
+ [
219
+ 0.0,
220
+ 0.0,
221
+ 1.0,
222
+ 0.0
223
+ ],
224
+ [
225
+ 0.0,
226
+ 0.0,
227
+ 0.0,
228
+ 1.0
229
+ ]
230
+ ],
231
+ "contact_points_group": [
232
+ [
233
+ 0,
234
+ 1,
235
+ 2,
236
+ 3,
237
+ 4,
238
+ 5,
239
+ 6,
240
+ 7
241
+ ]
242
+ ],
243
+ "contact_points_mask": [
244
+ true
245
+ ],
246
+ "contact_points_discription": [
247
+ "Grasping the side of the bottle.",
248
+ "Grasping the side of the bottle.",
249
+ "Grasping the side of the bottle.",
250
+ "Grasping the side of the bottle."
251
+ ],
252
+ "target_point_discription": [
253
+ "The center of the bottle."
254
+ ],
255
+ "functional_point_discription": [
256
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
257
+ ],
258
+ "stable": true
259
+ }
objects/001_bottle/model_data12.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 6.32006197811977e-05,
4
+ 0.9651236841652905,
5
+ -0.00040117108251664155
6
+ ],
7
+ "extents": [
8
+ 0.7264507394294986,
9
+ 1.9314907687412814,
10
+ 0.7245836664742528
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9484654406094759
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9484654406094759
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9484654406094759
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9484654406094759
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9484654406094759
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9484654406094759
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9484654406094759
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9484654406094759
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9484654406094759
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9484654406094759
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8969308812189518
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data13.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 6.813343718070148e-05,
4
+ 0.9390977719300474,
5
+ 2.540242926586833e-05
6
+ ],
7
+ "extents": [
8
+ 0.5201516785787955,
9
+ 1.8783392663982066,
10
+ 0.5123145297663331
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9238575889494822
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9238575889494822
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9238575889494822
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9238575889494822
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9238575889494822
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9238575889494822
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9238575889494822
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9238575889494822
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9238575889494822
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9238575889494822
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8477151778989644
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data14.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -0.001160282162804135,
4
+ 0.9664133568790396,
5
+ -0.0002273308673808323
6
+ ],
7
+ "extents": [
8
+ 0.7368365819371868,
9
+ 1.9335261228935234,
10
+ 0.7288127129310628
11
+ ],
12
+ "scale": [
13
+ 0.12,
14
+ 0.12,
15
+ 0.12
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9509331448649547
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9509331448649547
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9509331448649547
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9509331448649547
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9509331448649547
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9509331448649547
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9509331448649547
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9509331448649547
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9509331448649547
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9509331448649547
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.9018662897299095
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data15.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -0.002860660013270846,
4
+ 0.9655174702400184,
5
+ -0.0007627149390405923
6
+ ],
7
+ "extents": [
8
+ 0.6515121991841855,
9
+ 1.9370845399983234,
10
+ 0.6376907423201796
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.950566286782147
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 1.1505662867821471
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 1.1505662867821471
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 1.1505662867821471
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 1.1505662867821471
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 1.1505662867821471
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 1.1505662867821471
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 1.1505662867821471
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 1.1505662867821471
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.950566286782147
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.901132573564294
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data16.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0001373235878036478,
4
+ 0.9519651960318409,
5
+ 0.00013451393676300105
6
+ ],
7
+ "extents": [
8
+ 0.6994630205680312,
9
+ 1.9347558432456982,
10
+ 0.6985001673709139
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9536239987553657
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9536239987553657
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9536239987553657
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9536239987553657
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9536239987553657
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9536239987553657
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9536239987553657
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9536239987553657
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9536239987553657
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9536239987553657
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.9072479975107315
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data17.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -0.0003446647650355795,
4
+ 0.961731978370513,
5
+ 0.0019921166570926385
6
+ ],
7
+ "extents": [
8
+ 0.8139943336840061,
9
+ 1.9246318368160442,
10
+ 0.8161056128646271
11
+ ],
12
+ "scale": [
13
+ 0.13,
14
+ 0.13,
15
+ 0.13
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9461165877571774
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9461165877571774
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9461165877571774
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9461165877571774
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9461165877571774
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9461165877571774
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9461165877571774
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9461165877571774
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9461165877571774
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9461165877571774
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8922331755143549
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data18.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.00017280101350249238,
4
+ 0.9663286493453831,
5
+ 0.0007429447958703629
6
+ ],
7
+ "extents": [
8
+ 1.0955820798297977,
9
+ 1.9336062558001568,
10
+ 1.0923143936467377
11
+ ],
12
+ "scale": [
13
+ 0.1,
14
+ 0.1,
15
+ 0.1
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9493247123315753
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 1.0493247123315754
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 1.0493247123315754
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 1.0493247123315754
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 1.0493247123315754
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 1.0493247123315754
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 1.0493247123315754
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 1.0493247123315754
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 1.0493247123315754
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9493247123315753
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8986494246631507
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data19.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0004931770541809464,
4
+ 0.7851819855681549,
5
+ -0.079986268537124
6
+ ],
7
+ "extents": [
8
+ 1.0512461495403704,
9
+ 1.6391707929839179,
10
+ 1.1252538997974708
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.8149122034543642
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.8149122034543642
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.8149122034543642
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.8149122034543642
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.8149122034543642
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.8149122034543642
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.8149122034543642
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.8149122034543642
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.8149122034543642
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.8149122034543642
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.6298244069087284
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data2.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0007299550942568928,
4
+ 0.7996165928441576,
5
+ 0.0006001221606417559
6
+ ],
7
+ "extents": [
8
+ 0.6726601752536745,
9
+ 1.6002880548748633,
10
+ 0.6708764519854284
11
+ ],
12
+ "scale": [
13
+ 0.15,
14
+ 0.15,
15
+ 0.15
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.7859029546664957
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.8859029546664957
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.8859029546664957
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.8859029546664957
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.8859029546664957
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.8859029546664957
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.8859029546664957
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.8859029546664957
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.8859029546664957
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.7859029546664957
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.5718059093329915
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data20.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0001367525164325426,
4
+ 0.966211151866391,
5
+ -0.0002638558103402658
6
+ ],
7
+ "extents": [
8
+ 0.6029039956506574,
9
+ 1.9333479182630604,
10
+ 0.7285262040835236
11
+ ],
12
+ "scale": [
13
+ 0.11,
14
+ 0.11,
15
+ 0.11
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9519943658642179
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9519943658642179
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.05
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9519943658642179
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.05
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9519943658642179
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.05
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9519943658642179
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.05
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9519943658642179
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.05
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9519943658642179
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.05
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9519943658642179
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.05
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9519943658642179
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.05
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9519943658642179
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.9039887317284359
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data21.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -0.0002445995783731815,
4
+ 0.9660730272699999,
5
+ 8.193124105161999e-05
6
+ ],
7
+ "extents": [
8
+ 1.2506999325604935,
9
+ 1.9322561756344012,
10
+ 1.2494133772217852
11
+ ],
12
+ "scale": [
13
+ 0.09,
14
+ 0.11,
15
+ 0.09
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9498880294855148
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9998880294855148
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9998880294855148
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9998880294855148
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9998880294855148
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9998880294855148
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9998880294855148
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9998880294855148
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9998880294855148
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9498880294855148
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8997760589710295
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data22.json ADDED
@@ -0,0 +1,343 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.003398063193113296,
4
+ 0.9485234697938384,
5
+ 0.003310639711459277
6
+ ],
7
+ "extents": [
8
+ 0.6591070940362889,
9
+ 1.9434263895413233,
10
+ 0.6698019007544148
11
+ ],
12
+ "scale": [
13
+ 0.09,
14
+ 0.11,
15
+ 0.09
16
+ ],
17
+ "transform_matrix": [
18
+ [
19
+ 1.0,
20
+ 0.0,
21
+ 0.0,
22
+ 0.0
23
+ ],
24
+ [
25
+ 0.0,
26
+ 1.0,
27
+ 0.0,
28
+ 0.0
29
+ ],
30
+ [
31
+ -0.0,
32
+ 0.0,
33
+ 1.0,
34
+ 0.0
35
+ ],
36
+ [
37
+ 0.0,
38
+ 0.0,
39
+ 0.0,
40
+ 1.0
41
+ ]
42
+ ],
43
+ "target_pose": [
44
+ [
45
+ [
46
+ 1.0,
47
+ 0.0,
48
+ 0.0,
49
+ 0.0
50
+ ],
51
+ [
52
+ 0.0,
53
+ 1.0,
54
+ -0.0,
55
+ 0.9498900175094604
56
+ ],
57
+ [
58
+ 0.0,
59
+ 0.0,
60
+ 1.0,
61
+ -0.0
62
+ ],
63
+ [
64
+ 0.0,
65
+ 0.0,
66
+ 0.0,
67
+ 1.0
68
+ ]
69
+ ]
70
+ ],
71
+ "contact_points_pose": [
72
+ [
73
+ [
74
+ -0.0,
75
+ 0.0,
76
+ -1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ -0.0,
82
+ -0.0,
83
+ 0.7651299834251404
84
+ ],
85
+ [
86
+ -0.0,
87
+ -1.0,
88
+ 0.0,
89
+ -0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ -0.0,
101
+ 0.0,
102
+ 1.0,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ 0.0,
108
+ -0.0,
109
+ 0.7651299834251404
110
+ ],
111
+ [
112
+ -0.0,
113
+ 1.0,
114
+ -0.0,
115
+ -0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ -0.0,
127
+ 1.0,
128
+ -0.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 0.0,
134
+ -0.0,
135
+ 0.7651299834251404
136
+ ],
137
+ [
138
+ -0.0,
139
+ 0.0,
140
+ -1.0,
141
+ -0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ -0.0,
153
+ -0.0,
154
+ -1.0,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ -0.0,
160
+ -0.0,
161
+ 0.7651299834251404
162
+ ],
163
+ [
164
+ -0.0,
165
+ -1.0,
166
+ 0.0,
167
+ -0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 0.0,
179
+ -0.7071099877357483,
180
+ 0.7071099877357483,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ 0.0,
186
+ 0.0,
187
+ 0.7651299834251404
188
+ ],
189
+ [
190
+ -0.0,
191
+ 0.7071099877357483,
192
+ 0.7071099877357483,
193
+ -0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ -0.0,
205
+ 0.7071099877357483,
206
+ 0.7071099877357483,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ 0.0,
212
+ -0.0,
213
+ 0.7651299834251404
214
+ ],
215
+ [
216
+ -0.0,
217
+ 0.7071099877357483,
218
+ -0.7071099877357483,
219
+ -0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 0.0,
231
+ 0.7071099877357483,
232
+ -0.7071099877357483,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ -0.0,
238
+ -0.0,
239
+ 0.7651299834251404
240
+ ],
241
+ [
242
+ -0.0,
243
+ -0.7071099877357483,
244
+ -0.7071099877357483,
245
+ -0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ],
254
+ [
255
+ [
256
+ -0.0,
257
+ -0.7071099877357483,
258
+ -0.7071099877357483,
259
+ 0.0
260
+ ],
261
+ [
262
+ 1.0,
263
+ -0.0,
264
+ -0.0,
265
+ 0.7651299834251404
266
+ ],
267
+ [
268
+ -0.0,
269
+ -0.7071099877357483,
270
+ 0.7071099877357483,
271
+ -0.0
272
+ ],
273
+ [
274
+ 0.0,
275
+ 0.0,
276
+ 0.0,
277
+ 1.0
278
+ ]
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ -0.0,
292
+ -1.0,
293
+ -0.0029899999499320984
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ -0.0,
299
+ -0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [],
310
+ "contact_points_group": [
311
+ [
312
+ 0,
313
+ 1,
314
+ 2,
315
+ 3,
316
+ 4,
317
+ 5,
318
+ 6,
319
+ 7
320
+ ]
321
+ ],
322
+ "contact_points_mask": [
323
+ true
324
+ ],
325
+ "target_point_discription": [
326
+ "The center of the bottle."
327
+ ],
328
+ "contact_points_discription": [
329
+ "Grasping the side of the bottle.",
330
+ "Grasping the side of the bottle.",
331
+ "Grasping the side of the bottle.",
332
+ "Grasping the side of the bottle.",
333
+ "Grasping the side of the bottle.",
334
+ "Grasping the side of the bottle.",
335
+ "Grasping the side of the bottle.",
336
+ "Grasping the side of the bottle."
337
+ ],
338
+ "functional_point_discription": [
339
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
340
+ ],
341
+ "orientation_point_discription": [],
342
+ "stable": true
343
+ }
objects/001_bottle/model_data3.json ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 2.3900695319695956e-05,
4
+ 0.9660444683979004,
5
+ 9.054803351140765e-08
6
+ ],
7
+ "extents": [
8
+ 0.5665903739618798,
9
+ 1.9322563592637194,
10
+ 0.5677235151008584
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9493097435267883
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9493097435267883
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9493097435267883
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9493097435267883
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9493097435267883
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ]
150
+ ],
151
+ "transform_matrix": [
152
+ [
153
+ 1.0,
154
+ 0.0,
155
+ 0.0,
156
+ 0.0
157
+ ],
158
+ [
159
+ 0.0,
160
+ 1.0,
161
+ 0.0,
162
+ 0.0
163
+ ],
164
+ [
165
+ -0.0,
166
+ 0.0,
167
+ 1.0,
168
+ 0.0
169
+ ],
170
+ [
171
+ 0.0,
172
+ 0.0,
173
+ 0.0,
174
+ 1.0
175
+ ]
176
+ ],
177
+ "functional_matrix": [
178
+ [
179
+ [
180
+ 1.0,
181
+ 0.0,
182
+ 0.0,
183
+ 0.0
184
+ ],
185
+ [
186
+ 0.0,
187
+ 6.123233995736766e-17,
188
+ -1.0,
189
+ 0.9493097435267883
190
+ ],
191
+ [
192
+ 0.0,
193
+ 1.0,
194
+ 6.123233995736766e-17,
195
+ 0.0
196
+ ],
197
+ [
198
+ 0.0,
199
+ 0.0,
200
+ 0.0,
201
+ 1.0
202
+ ]
203
+ ]
204
+ ],
205
+ "orientation_point": [
206
+ [
207
+ 1.0,
208
+ 0.0,
209
+ 0.0,
210
+ 0.0
211
+ ],
212
+ [
213
+ 0.0,
214
+ 1.0,
215
+ 0.0,
216
+ 1.8986194870535766
217
+ ],
218
+ [
219
+ 0.0,
220
+ 0.0,
221
+ 1.0,
222
+ 0.0
223
+ ],
224
+ [
225
+ 0.0,
226
+ 0.0,
227
+ 0.0,
228
+ 1.0
229
+ ]
230
+ ],
231
+ "contact_points_group": [
232
+ [
233
+ 0,
234
+ 1,
235
+ 2,
236
+ 3,
237
+ 4,
238
+ 5,
239
+ 6,
240
+ 7
241
+ ]
242
+ ],
243
+ "contact_points_mask": [
244
+ true
245
+ ],
246
+ "contact_points_discription": [
247
+ "Grasping the side of the bottle.",
248
+ "Grasping the side of the bottle.",
249
+ "Grasping the side of the bottle.",
250
+ "Grasping the side of the bottle."
251
+ ],
252
+ "target_point_discription": [
253
+ "The center of the bottle."
254
+ ],
255
+ "functional_point_discription": [
256
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
257
+ ],
258
+ "stable": false
259
+ }
objects/001_bottle/model_data4.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0007978502643004445,
4
+ 0.9141617951104314,
5
+ 0.0001717055366030554
6
+ ],
7
+ "extents": [
8
+ 0.5709987035611077,
9
+ 1.8294536590118127,
10
+ 0.5600527146802431
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.899042065210898
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 1.099042065210898
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 1.099042065210898
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 1.099042065210898
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 1.099042065210898
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 1.099042065210898
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 1.099042065210898
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 1.099042065210898
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 1.099042065210898
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.899042065210898
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.798084130421796
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data5.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0017049136807438345,
4
+ 0.9647551537798251,
5
+ 7.8278101119759e-05
6
+ ],
7
+ "extents": [
8
+ 0.669724289420711,
9
+ 1.9295470640054653,
10
+ 0.6617593859852263
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9504253801385169
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.8504253801385169
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.8504253801385169
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.8504253801385169
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.8504253801385169
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.8504253801385169
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.8504253801385169
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.8504253801385169
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.8504253801385169
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9504253801385169
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.9008507602770337
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data6.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 0.0011460410904896206,
4
+ 0.9656968282747239,
5
+ -8.613964548830461e-05
6
+ ],
7
+ "extents": [
8
+ 0.7507893496838592,
9
+ 1.931554363790541,
10
+ 0.7465306411098585
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9494740922799375
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9494740922799375
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9494740922799375
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9494740922799375
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9494740922799375
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9494740922799375
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9494740922799375
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9494740922799375
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9494740922799375
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9494740922799375
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.898948184559875
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data7.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -0.0014103742440627518,
4
+ 0.9656817052222285,
5
+ 0.0007450344536377255
6
+ ],
7
+ "extents": [
8
+ 0.8329304367096104,
9
+ 1.9345223323485068,
10
+ 0.8274649899995219
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.949945216395721
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.949945216395721
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.949945216395721
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.949945216395721
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.949945216395721
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.949945216395721
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.949945216395721
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.949945216395721
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.949945216395721
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.949945216395721
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.899890432791442
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": true
367
+ }
objects/001_bottle/model_data8.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -0.00029897371079964534,
4
+ 0.9302157964968594,
5
+ 0.001964613281795638
6
+ ],
7
+ "extents": [
8
+ 0.9156035125117302,
9
+ 1.8668896923182046,
10
+ 0.92617656200847
11
+ ],
12
+ "scale": [
13
+ 0.1,
14
+ 0.1,
15
+ 0.1
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.9190073661170323
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.7190073661170322
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.7190073661170322
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.7190073661170322
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.7190073661170322
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.7190073661170322
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.7190073661170322
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.7190073661170322
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.7190073661170322
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.9190073661170323
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.8380147322340645
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/model_data9.json ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ -4.7426736995411276e-05,
4
+ 0.7812607809551178,
5
+ -0.0003101230382100913
6
+ ],
7
+ "extents": [
8
+ 0.5838448917003147,
9
+ 1.562838530920469,
10
+ 0.5780548018584378
11
+ ],
12
+ "scale": [
13
+ 0.132,
14
+ 0.132,
15
+ 0.132
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.7682678360422976
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_points_pose": [
46
+ [
47
+ [
48
+ 6.123233995736766e-17,
49
+ -1.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 1.0,
55
+ 6.123233995736766e-17,
56
+ 0.0,
57
+ 0.9182678360422977
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 6.123233995736766e-17,
75
+ -6.123233995736766e-17,
76
+ 1.0,
77
+ 0.0
78
+ ],
79
+ [
80
+ 1.0,
81
+ 3.749399456654644e-33,
82
+ -6.123233995736766e-17,
83
+ 0.9182678360422977
84
+ ],
85
+ [
86
+ 0.0,
87
+ 1.0,
88
+ 6.123233995736766e-17,
89
+ 0.0
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.0,
94
+ 0.0,
95
+ 1.0
96
+ ]
97
+ ],
98
+ [
99
+ [
100
+ 6.123233995736766e-17,
101
+ 1.0,
102
+ 1.2246467991473532e-16,
103
+ 0.0
104
+ ],
105
+ [
106
+ 1.0,
107
+ -6.123233995736766e-17,
108
+ -7.498798913309288e-33,
109
+ 0.9182678360422977
110
+ ],
111
+ [
112
+ 0.0,
113
+ 1.2246467991473532e-16,
114
+ -1.0,
115
+ 0.0
116
+ ],
117
+ [
118
+ 0.0,
119
+ 0.0,
120
+ 0.0,
121
+ 1.0
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 6.123233995736766e-17,
127
+ -6.123233995736766e-17,
128
+ -1.0,
129
+ 0.0
130
+ ],
131
+ [
132
+ 1.0,
133
+ 3.749399456654644e-33,
134
+ 6.123233995736766e-17,
135
+ 0.9182678360422977
136
+ ],
137
+ [
138
+ 0.0,
139
+ -1.0,
140
+ 6.123233995736766e-17,
141
+ 0.0
142
+ ],
143
+ [
144
+ 0.0,
145
+ 0.0,
146
+ 0.0,
147
+ 1.0
148
+ ]
149
+ ],
150
+ [
151
+ [
152
+ 6.123233995736766e-17,
153
+ -0.7071067811865476,
154
+ 0.7071067811865475,
155
+ 0.0
156
+ ],
157
+ [
158
+ 1.0,
159
+ 4.329780281177467e-17,
160
+ -4.329780281177466e-17,
161
+ 0.9182678360422977
162
+ ],
163
+ [
164
+ 0.0,
165
+ 0.7071067811865475,
166
+ 0.7071067811865476,
167
+ 0.0
168
+ ],
169
+ [
170
+ 0.0,
171
+ 0.0,
172
+ 0.0,
173
+ 1.0
174
+ ]
175
+ ],
176
+ [
177
+ [
178
+ 6.123233995736766e-17,
179
+ 0.7071067811865475,
180
+ 0.7071067811865476,
181
+ 0.0
182
+ ],
183
+ [
184
+ 1.0,
185
+ -4.329780281177466e-17,
186
+ -4.329780281177467e-17,
187
+ 0.9182678360422977
188
+ ],
189
+ [
190
+ 0.0,
191
+ 0.7071067811865476,
192
+ -0.7071067811865475,
193
+ 0.0
194
+ ],
195
+ [
196
+ 0.0,
197
+ 0.0,
198
+ 0.0,
199
+ 1.0
200
+ ]
201
+ ],
202
+ [
203
+ [
204
+ 6.123233995736766e-17,
205
+ 0.7071067811865475,
206
+ -0.7071067811865476,
207
+ 0.0
208
+ ],
209
+ [
210
+ 1.0,
211
+ -4.329780281177466e-17,
212
+ 4.329780281177467e-17,
213
+ 0.9182678360422977
214
+ ],
215
+ [
216
+ 0.0,
217
+ -0.7071067811865476,
218
+ -0.7071067811865475,
219
+ 0.0
220
+ ],
221
+ [
222
+ 0.0,
223
+ 0.0,
224
+ 0.0,
225
+ 1.0
226
+ ]
227
+ ],
228
+ [
229
+ [
230
+ 6.123233995736766e-17,
231
+ -0.7071067811865476,
232
+ -0.7071067811865475,
233
+ 0.0
234
+ ],
235
+ [
236
+ 1.0,
237
+ 4.329780281177467e-17,
238
+ 4.329780281177466e-17,
239
+ 0.9182678360422977
240
+ ],
241
+ [
242
+ 0.0,
243
+ -0.7071067811865475,
244
+ 0.7071067811865476,
245
+ 0.0
246
+ ],
247
+ [
248
+ 0.0,
249
+ 0.0,
250
+ 0.0,
251
+ 1.0
252
+ ]
253
+ ]
254
+ ],
255
+ "transform_matrix": [
256
+ [
257
+ 1.0,
258
+ 0.0,
259
+ 0.0,
260
+ 0.0
261
+ ],
262
+ [
263
+ 0.0,
264
+ 1.0,
265
+ 0.0,
266
+ 0.0
267
+ ],
268
+ [
269
+ -0.0,
270
+ 0.0,
271
+ 1.0,
272
+ 0.0
273
+ ],
274
+ [
275
+ 0.0,
276
+ 0.0,
277
+ 0.0,
278
+ 1.0
279
+ ]
280
+ ],
281
+ "functional_matrix": [
282
+ [
283
+ [
284
+ 1.0,
285
+ 0.0,
286
+ 0.0,
287
+ 0.0
288
+ ],
289
+ [
290
+ 0.0,
291
+ 6.123233995736766e-17,
292
+ -1.0,
293
+ 0.7682678360422976
294
+ ],
295
+ [
296
+ 0.0,
297
+ 1.0,
298
+ 6.123233995736766e-17,
299
+ 0.0
300
+ ],
301
+ [
302
+ 0.0,
303
+ 0.0,
304
+ 0.0,
305
+ 1.0
306
+ ]
307
+ ]
308
+ ],
309
+ "orientation_point": [
310
+ [
311
+ 1.0,
312
+ 0.0,
313
+ 0.0,
314
+ 0.0
315
+ ],
316
+ [
317
+ 0.0,
318
+ 1.0,
319
+ 0.0,
320
+ 1.5365356720845953
321
+ ],
322
+ [
323
+ 0.0,
324
+ 0.0,
325
+ 1.0,
326
+ 0.0
327
+ ],
328
+ [
329
+ 0.0,
330
+ 0.0,
331
+ 0.0,
332
+ 1.0
333
+ ]
334
+ ],
335
+ "contact_points_group": [
336
+ [
337
+ 0,
338
+ 1,
339
+ 2,
340
+ 3,
341
+ 4,
342
+ 5,
343
+ 6,
344
+ 7
345
+ ]
346
+ ],
347
+ "contact_points_mask": [
348
+ true
349
+ ],
350
+ "contact_points_discription": [
351
+ "Grasping the side of the bottle.",
352
+ "Grasping the side of the bottle.",
353
+ "Grasping the side of the bottle.",
354
+ "Grasping the side of the bottle.",
355
+ "Grasping the side of the bottle.",
356
+ "Grasping the side of the bottle.",
357
+ "Grasping the side of the bottle.",
358
+ "Grasping the side of the bottle."
359
+ ],
360
+ "target_point_discription": [
361
+ "The center of the bottle."
362
+ ],
363
+ "functional_point_discription": [
364
+ "Point 0: The center of the bottle and the functional axis is vertical and the bottom of the bottle is downward."
365
+ ],
366
+ "stable": false
367
+ }
objects/001_bottle/points_info.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "contact_points": [
3
+ {
4
+ "id": [],
5
+ "description": "The center of bottle",
6
+ "usage": "Used for grabbing the bottle."
7
+ }
8
+ ],
9
+ "functional_points": [
10
+ {
11
+ "id": 0,
12
+ "description": "The center of bottle",
13
+ "usage": "Used to place the bottle2 on the target location."
14
+ }
15
+ ]
16
+ }
objects/004_fluted-block/collision/base0.glb ADDED
Binary file (57.6 kB). View file
 
objects/004_fluted-block/collision/base1.glb ADDED
Binary file (96.3 kB). View file
 
objects/004_fluted-block/model_data0.json ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 1.5108504042178373e-18,
4
+ 0.0816158354282379,
5
+ -1.5108504042178373e-18
6
+ ],
7
+ "extents": [
8
+ 0.20505566895008087,
9
+ 0.16323167085647583,
10
+ 0.20139166712760928
11
+ ],
12
+ "scale": [
13
+ 0.45,
14
+ 0.4,
15
+ 0.45
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.08
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_pose": [
46
+ [
47
+ [
48
+ 1.0,
49
+ 0.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 0.0,
55
+ 1.0,
56
+ 0.0,
57
+ 0.0
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ]
72
+ ],
73
+ "trans_matrix": [
74
+ [
75
+ 1.0,
76
+ 0.0,
77
+ 0.0,
78
+ 0.0
79
+ ],
80
+ [
81
+ 0.0,
82
+ 1.0,
83
+ 0.0,
84
+ 0.0
85
+ ],
86
+ [
87
+ -0.0,
88
+ 0.0,
89
+ 1.0,
90
+ 0.0
91
+ ],
92
+ [
93
+ 0.0,
94
+ 0.0,
95
+ 0.0,
96
+ 1.0
97
+ ]
98
+ ],
99
+ "stable": true
100
+ }
objects/004_fluted-block/model_data1.json ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "center": [
3
+ 1.5108504042178373e-18,
4
+ 0.0816158354282379,
5
+ -1.5108504042178373e-18
6
+ ],
7
+ "extents": [
8
+ 0.20505566895008087,
9
+ 0.16323167085647583,
10
+ 0.20139166712760928
11
+ ],
12
+ "scale": [
13
+ 0.45,
14
+ 0.4,
15
+ 0.45
16
+ ],
17
+ "target_pose": [
18
+ [
19
+ [
20
+ 1.0,
21
+ 0.0,
22
+ 0.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ 0.0,
27
+ 1.0,
28
+ 0.0,
29
+ 0.08
30
+ ],
31
+ [
32
+ 0.0,
33
+ 0.0,
34
+ 1.0,
35
+ 0.0
36
+ ],
37
+ [
38
+ 0.0,
39
+ 0.0,
40
+ 0.0,
41
+ 1.0
42
+ ]
43
+ ]
44
+ ],
45
+ "contact_pose": [
46
+ [
47
+ [
48
+ 1.0,
49
+ 0.0,
50
+ 0.0,
51
+ 0.0
52
+ ],
53
+ [
54
+ 0.0,
55
+ 1.0,
56
+ 0.0,
57
+ 0.0
58
+ ],
59
+ [
60
+ 0.0,
61
+ 0.0,
62
+ 1.0,
63
+ 0.0
64
+ ],
65
+ [
66
+ 0.0,
67
+ 0.0,
68
+ 0.0,
69
+ 1.0
70
+ ]
71
+ ]
72
+ ],
73
+ "trans_matrix": [
74
+ [
75
+ 1.0,
76
+ 0.0,
77
+ 0.0,
78
+ 0.0
79
+ ],
80
+ [
81
+ 0.0,
82
+ 1.0,
83
+ 0.0,
84
+ 0.0
85
+ ],
86
+ [
87
+ -0.0,
88
+ 0.0,
89
+ 1.0,
90
+ 0.0
91
+ ],
92
+ [
93
+ 0.0,
94
+ 0.0,
95
+ 0.0,
96
+ 1.0
97
+ ]
98
+ ],
99
+ "stable": true
100
+ }
objects/004_fluted-block/visual/base0.glb ADDED
Binary file (2.8 kB). View file
 
objects/004_fluted-block/visual/base1.glb ADDED
Binary file (9.07 kB). View file
 
objects/017_calculator/model_data0.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": true,
3
+ "center": [
4
+ -0.0006901872972769903,
5
+ 0.26883891053031234,
6
+ -0.029293201067338813
7
+ ],
8
+ "extents": [
9
+ 1.1449798656169115,
10
+ 0.9807345945397659,
11
+ 2.04740564163493
12
+ ]
13
+ }
objects/017_calculator/model_data1.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": false,
3
+ "center": [
4
+ 0.12185381029043271,
5
+ 0.20532899965447812,
6
+ -0.2908155121196051
7
+ ],
8
+ "extents": [
9
+ 1.1266845742424139,
10
+ 0.40880232595486843,
11
+ 2.154314749438872
12
+ ]
13
+ }
objects/017_calculator/model_data2.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": true,
3
+ "center": [
4
+ -4.304726844155791e-05,
5
+ 0.20155059325541347,
6
+ -0.02255271172612791
7
+ ],
8
+ "extents": [
9
+ 1.4818066397672134,
10
+ 1.0742219585246588,
11
+ 2.071257845029357
12
+ ]
13
+ }
objects/017_calculator/model_data3.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": false,
3
+ "center": [
4
+ 0.025845735588641894,
5
+ 0.1691618451097128,
6
+ 0.0014333657922782595
7
+ ],
8
+ "extents": [
9
+ 1.6949706122765926,
10
+ 0.40841271479794905,
11
+ 2.1813056103300927
12
+ ]
13
+ }
objects/017_calculator/model_data4.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": false,
3
+ "center": [
4
+ -0.04058798431972783,
5
+ 0.2345551378228109,
6
+ -0.4631936861235499
7
+ ],
8
+ "extents": [
9
+ 1.276989351879139,
10
+ 0.6876553470403526,
11
+ 2.568195912578859
12
+ ]
13
+ }
objects/017_calculator/model_data5.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": true,
3
+ "center": [
4
+ -0.0035469414424682487,
5
+ 0.09414929627297867,
6
+ 1.5122340926601983e-05
7
+ ],
8
+ "extents": [
9
+ 1.925708595974621,
10
+ 0.22283651047996095,
11
+ 1.081874249240303
12
+ ]
13
+ }
objects/017_calculator/points_info.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "contact_points": [],
3
+ "functional_points": []
4
+ }
objects/026_pet-collar/model_data1.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stable": true,
3
+ "center": [
4
+ -0.0024587997874679036,
5
+ 0.27349704934927177,
6
+ 0.07970278498148688
7
+ ],
8
+ "extents": [
9
+ 2.489965677663755,
10
+ 0.5807843507881925,
11
+ 2.4912093971055587
12
+ ]
13
+ }
objects/079_remotecontrol/collision/base0.glb ADDED
Binary file (85.6 kB). View file
 
objects/079_remotecontrol/collision/base1.glb ADDED
Binary file (43.5 kB). View file