kscale 0.0.8__tar.gz → 0.0.9__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {kscale-0.0.8/kscale.egg-info → kscale-0.0.9}/PKG-INFO +1 -1
- {kscale-0.0.8 → kscale-0.0.9}/kscale/__init__.py +5 -1
- kscale-0.0.9/kscale/artifacts/__init__.py +8 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/pybullet.py +2 -2
- {kscale-0.0.8 → kscale-0.0.9/kscale.egg-info}/PKG-INFO +1 -1
- {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/SOURCES.txt +1 -0
- {kscale-0.0.8 → kscale-0.0.9}/LICENSE +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/MANIFEST.in +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/README.md +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/api.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/artifacts/plane.obj +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/artifacts/plane.urdf +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/conf.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/py.typed +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/requirements-dev.txt +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/requirements.txt +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/__init__.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/api.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/cli.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/client.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/gen/__init__.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/gen/api.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/urdf.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/store/utils.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/utils/__init__.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale/utils/api_base.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/dependency_links.txt +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/entry_points.txt +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/not-zip-safe +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/requires.txt +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/top_level.txt +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/pyproject.toml +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/setup.cfg +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/setup.py +0 -0
- {kscale-0.0.8 → kscale-0.0.9}/tests/test_dummy.py +0 -0
@@ -6,9 +6,9 @@ import itertools
|
|
6
6
|
import logging
|
7
7
|
import math
|
8
8
|
import time
|
9
|
-
from pathlib import Path
|
10
9
|
from typing import Sequence
|
11
10
|
|
11
|
+
from kscale.artifacts import PLANE_URDF_PATH
|
12
12
|
from kscale.store.urdf import download_urdf
|
13
13
|
|
14
14
|
logger = logging.getLogger(__name__)
|
@@ -53,7 +53,7 @@ async def main(args: Sequence[str] | None = None) -> None:
|
|
53
53
|
p.configureDebugVisualizer(p.COV_ENABLE_MOUSE_PICKING, 1)
|
54
54
|
|
55
55
|
# Loads the floor plane.
|
56
|
-
floor = p.loadURDF(str(
|
56
|
+
floor = p.loadURDF(str(PLANE_URDF_PATH))
|
57
57
|
|
58
58
|
# Load the robot URDF.
|
59
59
|
start_position = [0.0, 0.0, 1.0]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|