Changes between Initial Version and Version 1 of Exposed_Vector3D_Functions


Ignore:
Timestamp:
Feb 23, 2008, 4:19:00 AM (16 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Exposed_Vector3D_Functions

    v1 v1  
     1A listing and description of the properties and methods of the Vector3D class, which holds a 3-dimensional vector.
     2
     3= Vector3D Methods =
     4
     5== Vector3D (Constructor) ==
     6 * '''Overview:'''
     7  * Instantiates a new Vector3D object.
     8 * '''Syntax:'''
     9  * new Vector3D();
     10  * new Vector3D( x, y, z );
     11 * '''Parameters:'''
     12  * x, y, z: The (double-precision real) components of the new vector. If unspecified, default to 0.
     13 * '''Returns:'''
     14  * The newly created Vector3D object.
     15
     16= Vector3D Properties =
     17
     18== x, y, z ==
     19 * '''Overview:'''
     20  * Gets or sets the three components of this vector.
     21 * '''Type:'''
     22  * double