A listing and description of the properties and methods of the Vector3D class, which holds a 3-dimensional vector.

Vector3D Methods

Vector3D (Constructor)

  • Overview:
    • Instantiates a new Vector3D object.
  • Syntax:
    • new Vector3D();
    • new Vector3D( x, y, z );
  • Parameters:
    • x, y, z: The (double-precision real) components of the new vector. If unspecified, default to 0.
  • Returns:
    • The newly created Vector3D object.

Vector3D Properties

x, y, z

  • Overview:
    • Gets or sets the three components of this vector.
  • Type:
    • double
Last modified 16 years ago Last modified on Feb 23, 2008, 4:19:00 AM
Note: See TracWiki for help on using the wiki.