summaryrefslogtreecommitdiff
path: root/src/types.cpp
diff options
context:
space:
mode:
authorMartin Miller2017-03-28 10:06:47 -0500
committerMartin Miller2017-03-28 10:06:47 -0500
commitfb4b8328bfa5a8930b87ec8b7465b8032f4873c5 (patch)
treef1998951d3b9b10d2feec8423ebec1b85a184a48 /src/types.cpp
parent9533fbcda07254b65a53a9109555662d9a09086c (diff)
downloadrefslam-fb4b8328bfa5a8930b87ec8b7465b8032f4873c5.zip
refslam-fb4b8328bfa5a8930b87ec8b7465b8032f4873c5.tar.gz
move aboveWater
() back to main
Diffstat (limited to 'src/types.cpp')
-rw-r--r--src/types.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/types.cpp b/src/types.cpp
deleted file mode 100644
index 151fd63..0000000
--- a/src/types.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * =====================================================================================
- *
- * Filename: types.cpp
- *
- * Description:
- *
- * Version: 1.0
- * Created: 03/27/2017 03:26:51 PM
- * Revision: none
- * Compiler: gcc
- *
- * Author: Martin Miller (MHM), miller7@illinois.edu
- * Organization: Aerospace Robotics and Controls Lab (ARC)
- *
- * =====================================================================================
- */
-
-
-#include "types.h"
-
-double
-aboveWater(const Quaterniond &q)
-{
- Vector3d tip;
- tip << 0.65*3.43, 0, -0.60;
- tip = q._transformVector(tip);
- return tip[2];
-}