00001 /* This file is part of CrossZero 00002 * Copyright (C) 2008 Heikki Laitala 00003 * All rights reserved. 00004 * 00005 * Created: Sun Feb 17 2008 by Heikki Laitala 00006 * 00007 * $Revision:$ 00008 */ 00009 00010 #ifndef _CROSSZEROGEOMETRYOBJECTS_H_ 00011 #define _CROSSZEROGEOMETRYOBJECTS_H_ 00012 00031 template<class T> struct CrossZeroPoint 00032 { 00033 00034 CrossZeroPoint(T xVal, T yVal) : x(xVal), y(yVal) {} 00035 00039 T x; 00043 T y; 00044 00045 }; 00046 00047 00048 00049 #endif //_CROSSZEROGEOMETRYOBJECTS_H_