-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from TJStienstra/rename
Rename
- Loading branch information
Showing
34 changed files
with
341 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
"""Module containing the bicycle rider model.""" | ||
|
||
__all__ = [ | ||
"PedalsToFeetBase", "SeatBase", "HandGripBase", | ||
"PedalsBase", "SeatBase", "HandGripsBase", | ||
|
||
"BicycleRider", | ||
|
||
"HolonomicPedalsToFeet", "SpringDamperPedalsToFeet", | ||
"HolonomicPedals", "SpringDamperPedals", | ||
|
||
"PelvisInterPointMixin", | ||
"FixedSeat", "SideLeanSeat", "SideLeanSeatTorque", "SideLeanSeatSpringDamper", | ||
|
||
"HolonomicHandGrip", "SpringDamperHandGrip", | ||
"HolonomicHandGrips", "SpringDamperHandGrips", | ||
] | ||
|
||
from brim.brim.base_connections import ( | ||
HandGripBase, | ||
PedalsToFeetBase, | ||
HandGripsBase, | ||
PedalsBase, | ||
SeatBase, | ||
) | ||
from brim.brim.bicycle_rider import BicycleRider | ||
from brim.brim.pedal_connections import HolonomicPedalsToFeet, SpringDamperPedalsToFeet | ||
from brim.brim.seat_connections import ( | ||
from brim.brim.hand_grips import HolonomicHandGrips, SpringDamperHandGrips | ||
from brim.brim.pedals import HolonomicPedals, SpringDamperPedals | ||
from brim.brim.seats import ( | ||
FixedSeat, | ||
PelvisInterPointMixin, | ||
SideLeanSeat, | ||
SideLeanSeatSpringDamper, | ||
SideLeanSeatTorque, | ||
) | ||
from brim.brim.steer_connections import HolonomicHandGrip, SpringDamperHandGrip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.