ISInterface:NavigationGetPoint3f

From Lavish Software Wiki
Jump to navigation Jump to search

Syntax

  • bool NavigationGetPoint3f(char *World, char *Name, POINT3F &Dest)

Purpose

To obtain the point3f of a given point in a given world

Usage

Parameters

  • char *World
[in] Name of the world to get a point from
  • char *Name
[in] Name of the point to get data from
  • POINT3f &Dest
[out] Point3f to put the points data into

Return Value

  • bool
Returns true on success, false on failure

Examples

POINT3F NewPoint;
pISInterface->NavigationGetPoint3f("Earth","Start_Point",NewPoint);

See Also