Skip to content

Commit 1cdcc53

Browse files
committed
typo, remove->filter
1 parent c927ffd commit 1cdcc53

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/backends/pybullet.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PyBullet
1010
source collision detection and rigid dynamics library written in C++. PyBullet
1111
was written with the intention of being a "fast and easy to use Python module for
1212
robotics simulation and machine learning." It also provides bindings for rendering
13-
and visualization, and support for virtual reality headsets including. While PyBullet
13+
and visualization, and support for virtual reality headsets. While PyBullet
1414
is based on a client-server architecture, there is no need to spin up any Docker
1515
containers to run the server. This, along with its speed, may make PyBullet a
1616
preferable backend for COMPAS_FAB. However, it, alone, does not provide motion

src/compas_fab/backends/pybullet/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ def _add_ids_to_robot_links(self, robot):
201201
pybullet_attr = {'id': link_id}
202202
link.attr.setdefault('pybullet', {}).update(pybullet_attr)
203203

204-
def remove_configurations_in_collision(self, robot, configurations):
205-
"""Removes from a list of configurations those which are in collision.
204+
def filter_configurations_in_collision(self, robot, configurations):
205+
"""Filters from a list of configurations those which are in collision.
206206
Used for a custom inverse kinematics function.
207207
208208
Parameters

0 commit comments

Comments
 (0)