Skip to content

Instantly share code, notes, and snippets.

View yijiangh's full-sized avatar

Yijiang Huang yijiangh

View GitHub Profile
@yijiangh
yijiangh / round_collada_numbers.py
Created October 10, 2019 12:29
python 3 compatible .dae rounding script
#! /usr/bin/env python
'''
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2013, University of Colorado, Boulder
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@yijiangh
yijiangh / openrave-ikfast_dockerfile
Last active October 8, 2019 20:30
Dockerfile for tweaking openrave-ros docker image for ikfast
FROM personalrobotics/ros-openrave
RUN apt-get update || true && apt-get install -y --no-install-recommends build-essential python-pip liblapack-dev vim ros-indigo-xacro ros-indigo-collada-urdf && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pip install sympy==0.7.1