Aw type vector

From ActiveWiki
Jump to navigation Jump to search
aw_type_vector

Description

Represents a 3D vector.

Notes

A 3D vector represents a point in a 3D coordinate system and is defined in AW.h as the following.

typedef struct aw_type_vector {
  float x;
  float y;
  float z;
} aw_type_vector;

It is used in the object data structures, mainly to define size and volume of an object.

See also

aw_object_data_camera, aw_object_data_mover, aw_object_data_particles, aw_object_data_zone