Skip to content
MrNex edited this page Jun 28, 2015 · 2 revisions

Contents

The Structure

The definition of a Vector is as such:

  typedef struct Vector
  {
      int dimension;
      float* components;
  }Vector;