Difference between revisions of "ISInterface:NavigationGetPoint3f"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool NavigationGetPoint3f(char *World, char *Name, POINT3F &Dest)
 
== Purpose ==
 
== Purpose ==
 
+
To obtain the point3f of a given point in a given world
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== 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 ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
POINT3F NewPoint;
 +
pISInterface->NavigationGetPoint3f("Earth","Start_Point",NewPoint);
  
 
== See Also ==
 
== See Also ==

Latest revision as of 02:50, 3 September 2005

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