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
# /bin/bash | |
set -e | |
set -u | |
set -x | |
cd $HOME | |
# TODO: The next ln -s line breaks cross compiling with multiarch, need an alternative! | |
# source: http://stackoverflow.com/a/9004026/99379 | |
if [! -d "/usr/lib64" ]; then |
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
/// @author Andrew Hundt <[email protected]> | |
#ifndef _VREP_VF_CONTROLLER_ | |
#define _VREP_VF_CONTROLLER_ | |
#include <string> | |
#include <tuple> | |
#include <boost/format.hpp> | |
#include <Eigen/Core> | |
#include <Eigen/Geometry> |
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
make | |
-- “/Users/athundt/source/git/versor/scratch/../ext/glv”<<<<<< | |
VERSOR LINK DIRECTORES | |
-- link dir='/Users/athundt/source/git/versor/scratch/../build' | |
VERSOR INCLUDE DIRECTORES | |
-- include dir='/Users/athundt/source/git/versor/scratch/..' | |
-- include dir='/Users/athundt/source/git/versor/scratch/../vsr' | |
-- include dir='/Users/athundt/source/git/versor/scratch/../vsr/space' | |
-- include dir='/Users/athundt/source/git/versor/scratch/../vsr/draw' | |
-- include dir='/Users/athundt/source/git/versor/scratch/../vsr/util' |
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
# https://github.com/hengli/camodocal | |
include (ExternalProject) | |
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/camodocal") | |
set (camodocal_URL "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/camodocal") | |
else () | |
set (camodocal_URL "INSERT DOWNLOAD URL OR LOCAL PATH TO camodocal HERE") | |
message(STATUS "Add -DFRI_CLIENT_SDK_CPP_URL=/path/to/camodocal to your cmake command to build camodocal components") | |
endif () |
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
Scanning dependencies of target assignment3_context | |
[ 73%] Building CXX object cs436/assignment3/CMakeFiles/assignment3_context.dir/src/assignment3_context.cpp.o | |
In file included from /home/ahundt/catkin_ws/build/cs436/assignment3/boost-prefix/include/boost/geometry/geometry.hpp:21:0, | |
from /home/ahundt/catkin_ws/build/cs436/assignment3/boost-prefix/include/boost/geometry.hpp:17, | |
from /home/ahundt/catkin_ws/src/cs436/assignment3/src/rtree_graph_planner.hpp:14, | |
from /home/ahundt/catkin_ws/src/cs436/assignment3/src/assignment3_context.cpp:1: | |
/home/ahundt/catkin_ws/build/cs436/assignment3/boost-prefix/include/boost/geometry/core/coordinate_system.hpp: In instantiation of ‘boost::geometry::traits::coordinate_system<boost::array<double, 6ul>, void>’: | |
/home/ahundt/catkin_ws/build/cs436/assignment3/boost-prefix/include/boost/geometry/core/coordinate_system.hpp:71:21: instantiated from ‘boost::geometry::core_dispatch::coordinate_system<boost::geometry::point_tag, bo |
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
// Library includes | |
#include <string> | |
#include <ostream> | |
#include <iostream> | |
#include <memory> | |
#include <vector> | |
#include <iostream> | |
// Boost includes |
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
// | |
// echo_server.cpp | |
// ~~~~~~~~~~~~~~~ | |
// | |
// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) | |
// Copyright (c) 2015 Andrew Hundt | |
// | |
// Distributed under the Boost Software License, Version 1.0. (See accompanying | |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
// |
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
// | |
// echo_server.cpp | |
// ~~~~~~~~~~~~~~~ | |
// | |
// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) | |
// Copyright (c) 2015 Andrew Hundt | |
// | |
// Distributed under the Boost Software License, Version 1.0. (See accompanying | |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
// |
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
python -v /usr/local/bin/openrave.py | |
# installing zipimport hook | |
import zipimport # builtin | |
# installed zipimport hook | |
# /usr/local/Cellar/python/2.7.6/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.pyc matches /usr/local/Cellar/python/2.7.6/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py | |
import site # precompiled from /usr/local/Cellar/python/2.7.6/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.pyc | |
# /usr/local/Cellar/python/2.7.6/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.pyc matches /usr/local/Cellar/python/2.7.6/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py | |
import os # precompiled from /usr/local/Cellar/python/2.7.6/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.pyc | |
import errno # builtin | |
import posix # builtin |
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
Hg brew install simbody --verbose | |
==> Downloading https://github.com/simbody/simbody/archive/Simbody-3.3.zip | |
Already downloaded: /Library/Caches/Homebrew/simbody-3.3.zip | |
==> Verifying simbody-3.3.zip checksum | |
unzip /Library/Caches/Homebrew/simbody-3.3.zip | |
Archive: /Library/Caches/Homebrew/simbody-3.3.zip | |
32522087f63eab536d34c9a9a281cf50d1a7d5a0 | |
creating: simbody-Simbody-3.3/ | |
inflating: simbody-Simbody-3.3/.gitattributes | |
inflating: simbody-Simbody-3.3/.travis.yml |