Difference between revisions of "ISInterface:NavigationSetPoint3f"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool NavigationSetPoint3f(char *World, char *Name, POINT3F &Pt)
 
== Purpose ==
 
== Purpose ==
 
+
Set a given points POINT3F data
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*char *World
 +
:'''[in]''' Name of the world the point is in
 +
*char *Name
 +
:'''[in]''' Name of the point to set
 +
*POINT3F &Pt
 +
:'''[in]'''  POINT3F variable to use to set the given points data
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
*NavigationSetPoint3f("Earth","Start_Point",TempPoint);
  
 
== See Also ==
 
== See Also ==

Latest revision as of 02:57, 3 September 2005

Syntax

  • bool NavigationSetPoint3f(char *World, char *Name, POINT3F &Pt)

Purpose

Set a given points POINT3F data

Usage

Parameters

  • char *World
[in] Name of the world the point is in
  • char *Name
[in] Name of the point to set
  • POINT3F &Pt
[in] POINT3F variable to use to set the given points data

Return Value

  • bool
Returns true on success, false on failure

Examples

  • NavigationSetPoint3f("Earth","Start_Point",TempPoint);

See Also