VR-Forces 4.6 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfNavigation
transitionPointFinder.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2015 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
6
#pragma once
7
8
#include "matrix/vlVector.h"
9
#include "
vrfNavigation/navArea.h
"
10
11
#include "
vrfNavigation/vrfNavigationDefines.h
"
12
17
class
DT_DLL_vrfNavigation
DtTransitionPointFinder
18
{
19
public
:
20
21
DtTransitionPointFinder
(
const
DtVector
& localDestination,
const
DtVector
& start);
22
23
static
DtOnGraphVertexVisitedResult
transitionPointCallback(
24
const
DtVector
& localPoint,
void
* userData);
25
virtual
DtOnGraphVertexVisitedResult
processTransitionPoint(
const
DtVector
& localPoint);
26
27
static
DtOnPathToGraphVertexComputedResult
transitionPathCallback(
28
const
DtVector
& localPoint,
double
pathCost,
void
* userData);
29
30
virtual
DtOnPathToGraphVertexComputedResult
processTransitionPath(
const
DtVector
& localPoint,
double
pathCost);
31
32
DtVector
myDestination
;
33
DtVector
myStartPosition
;
34
35
double
myBestCost
;
36
DtVector
myBestTransitionPoint
;
37
double
myBestDistance
;
38
double
myBestPathCost
;
39
40
DtVector
myClosestPoint
;
41
double
myClosestDistance
;
42
};
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)