aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/motion.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-10-23 00:49:55 +0300
committerEugene Sandulenko2013-10-23 00:49:55 +0300
commit18d2bbc2289feff265c12026aae7093b24aee959 (patch)
treeaf609dd8c733d6945749fbe7c8888537bdf2244b /engines/fullpipe/motion.h
parent1dd90e4ea9a01df9f2ccca8779c4fb3bec86cb34 (diff)
downloadscummvm-rg350-18d2bbc2289feff265c12026aae7093b24aee959.tar.gz
scummvm-rg350-18d2bbc2289feff265c12026aae7093b24aee959.tar.bz2
scummvm-rg350-18d2bbc2289feff265c12026aae7093b24aee959.zip
FULLPIPE: Implement MovGraph::calcNodeDistancesAndAngles()
Diffstat (limited to 'engines/fullpipe/motion.h')
-rw-r--r--engines/fullpipe/motion.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h
index 85ad084f60..7da0c47fb2 100644
--- a/engines/fullpipe/motion.h
+++ b/engines/fullpipe/motion.h
@@ -206,6 +206,8 @@ class MovGraphLink : public CObject {
public:
MovGraphLink();
virtual bool load(MfcArchive &file);
+
+ void calcNodeDistanceAndAngle();
};
struct MovGraphItem {
@@ -255,6 +257,7 @@ class MovGraph : public MotionController {
virtual int method50();
double calcDistance(Common::Point *point, MovGraphLink *link, int fuzzyMatch);
+ void calcNodeDistancesAndAngles();
MovGraphNode *calcOffset(int ox, int oy);
};