diff options
author | Jessie Speert <speer034@umn.edu> | 2021-03-08 19:09:55 -0800 |
---|---|---|
committer | Jessie Speert <speer034@umn.edu> | 2021-03-08 19:09:55 -0800 |
commit | f30fcc505dc3ce2df25dce16b329c90c32049862 (patch) | |
tree | 88e51f09844d0df1627643ccc3a1335d5fd74cbf /dev/a4-dance/rotation_bounds.cc | |
parent | Added Assignment 3 worksheet and code (diff) | |
download | csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.tar csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.tar.gz csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.tar.bz2 csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.tar.lz csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.tar.xz csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.tar.zst csci4611-f30fcc505dc3ce2df25dce16b329c90c32049862.zip |
Uploading Assignment 4
Diffstat (limited to '')
-rw-r--r-- | dev/a4-dance/rotation_bounds.cc | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev/a4-dance/rotation_bounds.cc b/dev/a4-dance/rotation_bounds.cc new file mode 100644 index 0000000..a83b1ce --- /dev/null +++ b/dev/a4-dance/rotation_bounds.cc @@ -0,0 +1,64 @@ +#include "rotation_bounds.h" +#include <cstdlib> + +RotationBounds::RotationBounds() { + dofRX = false; + dofRY = false; + dofRZ = false; + minRX = 0; + maxRX = 0; + minRY = 0; + maxRY = 0; + minRZ = 0; + maxRZ = 0; + dofs = 0; +} + +void RotationBounds::setdof(bool rx, bool ry, bool rz) { + dofRX = rx; + dofRY = ry; + dofRZ = rz; + dofs = rx + ry + rz; +} + +void RotationBounds::setR(int index, float min, float max) { + if (index > dofs) { + std::abort(); // Trying to set past the max index. + } + if (index == 0) { + if (dofRX) { + minRX = min; + maxRX = max; + } else if (dofRY) { + minRY = min; + maxRY = max; + } else if (dofRZ) { + minRZ = min; + maxRZ = max; + } else { + abort(); + } + } else if (index == 1) { + if (dofRX && dofRY) { + minRY = min; + maxRY = max; + } else if (dofRX && dofRZ) { + minRZ = min; + maxRZ = max; + } else if (dofRY && dofRZ) { + minRZ = min; + maxRZ = max; + } else { + abort(); + } + } else if (index == 2) { + if (dofRX && dofRY && dofRZ) { + minRZ = min; + maxRZ = max; + } else { + abort(); + } + } else { + abort(); + } +}
\ No newline at end of file |