#ifndef _Vector3_H__ #define _Vector3_H__ namespace GtpVisibilityPreprocessor { /** 3D vector */ class Vector3 { public: float x, y, z; }; }; #endif