Craig Evans / Utils

Dependents:   Leg

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Utils.cpp Source File

Utils.cpp

00001 #include "Utils.h"
00002 
00003 vector_t create_vector(float x,float y,float z) {
00004     
00005     vector_t v = {x,y,z};
00006     
00007     return v;    
00008 }