Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion genesis/options/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ class RigidOptions(Options):
counterpart. 'approximate_implicitfast' is an even faster approximation of 'implicitfast', which avoid
computing the inverse mass matrix twice by considering the first order correction terms of the implicit
integration scheme systematically, including for computing the acceleration resulting from the constraints
and external forces. Although this approximation is wrong in theory, it works resonably well in practice.
and external forces. Although this approximation is wrong in theory, it works reasonably well in practice.
Defaults to 'approximate_implicitfast'.
IK_max_targets : int, optional
Maximum number of IK targets. Increasing this doesn't affect IK solving speed, but will increase memory usage.
Expand Down
2 changes: 1 addition & 1 deletion genesis/vis/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def add_plugin(self, plugin: "ViewerPlugin") -> "ViewerPlugin":
"""
self._viewer_plugins.append(plugin)
if self.is_built:
self._viewer.register_plugin(plugin)
self._pyrender_viewer.register_plugin(plugin)
return plugin

# ------------------------------------------------------------------------------------
Expand Down
Loading