Skip to content

Commit c2a68f4

Browse files
committed
Upstream Configuration
1 parent 07b52e0 commit c2a68f4

File tree

4 files changed

+880
-3
lines changed

4 files changed

+880
-3
lines changed

src/compas/robots/__init__.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Model
1010
=====
1111
12-
.. inheritance-diagram:: RobotModel Joint Link ToolModel
12+
.. inheritance-diagram:: RobotModel Joint Link ToolModel Configuration
1313
:parts: 1
1414
1515
The root of the model is the :class:`RobotModel` class, which
@@ -24,6 +24,7 @@
2424
Joint
2525
Link
2626
ToolModel
27+
Configuration
2728
2829
2930
Geometric description
@@ -115,6 +116,10 @@
115116
"""
116117
from __future__ import absolute_import
117118

119+
from .configuration import (
120+
Configuration,
121+
FixedLengthList
122+
)
118123
from .model import (
119124
Axis,
120125
Box,
@@ -186,5 +191,8 @@
186191
'AbstractMeshLoader',
187192
'DefaultMeshLoader',
188193
'LocalPackageMeshLoader',
189-
'GithubPackageMeshLoader'
194+
'GithubPackageMeshLoader',
195+
196+
'Configuration',
197+
'FixedLengthList'
190198
]

0 commit comments

Comments
 (0)