This file contains hidden or 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
import numpy as np | |
import time | |
import Spectral_BLDC as Spectral | |
class SSG48Gripper: | |
OPEN_CLOSE_MARGIN = 2 |
This file contains hidden or 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
import Box2D | |
import Box2D.b2 as b2 | |
class b2Separator: | |
""" | |
* Convex Separator for Box2D Flash | |
* | |
* This code has been ported to Python by Stephen Tian from the Java port by Chad Palsulich of the Flash original written by Antoan Angelov. |