HW3DPoint

Fields

float

x

float

y

float

z

Functions

HW3DPoint

HW3DPoint

HW3DPoint

HW3DPoint

void

Set

void

Set

void

Set

void

Set

void

Set

Detailed Description

class HW3DPoint

Public Functions

inline HW3DPoint()

default constructor

inline HW3DPoint(float X, float Y, float Z = 0.0f)

constructor that accepts three floats

inline HW3DPoint(HW3DPoint const *p)

constructor that accepts a pointer to an HW3DPoint object

inline HW3DPoint(HW3DPoint const &p)

constructor that accepts an HW3DPoint reference

inline void Set(float X, float Y, float Z = 0.0f)

Packs an HW3DPoint object with coordinate values.

inline void Set(HW3DPoint *p)

Packs an HW3DPoint object with coordinate values.

inline void Set(HW3DPoint const *p)

Packs an HW3DPoint object with coordinate values.

inline void Set(HW3DPoint &p)

Packs an HW3DPoint object with coordinate values.

inline void Set(HW3DPoint const &p)

Packs an HW3DPoint object with coordinate values.

Public Members

float x

The x-coordinate of a 3-dimensional point.

float y

The y-coordinate of a 3-dimensional point.

float z

The z-coordinate of a 3-dimensional point.