#include <location.h>
Inheritance diagram for Location:


Public Member Functions | |
| Location (double x, double y, double z) | |
| virtual void | setLocation (double x, double y, double z) |
| virtual void | getLocation (double *x, double *y, double *z) |
| virtual void | update_location () |
Protected Attributes | |
| double | X |
| double | Y |
| double | Z |
|
||||||||||||||||
|
Definition at line 46 of file location.h.
|
|
||||||||||||||||
|
Definition at line 56 of file location.h. References update_location(), X, Y, and Z.
00056 {
00057 update_location();
00058 *x = X;
00059 *y = Y;
00060 *z = Z;
00061 }
|
Here is the call graph for this function:

|
||||||||||||||||
|
Definition at line 51 of file location.h.
|
|
|
Definition at line 62 of file location.h. Referenced by getLocation().
00062 {}
|
|
|
Definition at line 65 of file location.h. Referenced by getLocation(), Location(), and setLocation(). |
|
|
Definition at line 65 of file location.h. Referenced by getLocation(), Location(), and setLocation(). |
|
|
Definition at line 65 of file location.h. Referenced by getLocation(), Location(), and setLocation(). |
1.3.3