X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsupport%2Fnormangle.cpp;fp=libctsupport%2Fnormangle.cpp;h=0000000000000000000000000000000000000000;hp=12638018fac01da3877b933d40568822a0c83970;hb=2d39e823ba389fc68e5317c422b55be006094252;hpb=a95e41ac40cd2f3a4401d921618604cf33f2a904 diff --git a/libctsupport/normangle.cpp b/libctsupport/normangle.cpp deleted file mode 100644 index 1263801..0000000 --- a/libctsupport/normangle.cpp +++ /dev/null @@ -1,42 +0,0 @@ -/***************************************************************************** -** This is part of the CTSim program -** Copyright (C) 1983-2000 Kevin Rosenberg -** -** $Id: normangle.cpp,v 1.2 2000/06/19 19:04:05 kevin Exp $ -** -** This program is free software; you can redistribute it and/or modify -** it under the terms of the GNU General Public License (version 2) as -** published by the Free Software Foundation. -** -** This program is distributed in the hope that it will be useful, -** but WITHOUT ANY WARRANTY; without even the implied warranty of -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -** GNU General Public License for more details. -** -** You should have received a copy of the GNU General Public License -** along with this program; if not, write to the Free Software -** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -******************************************************************************/ - -#include "ctsupport.h" - - -/* NAME - * norm_ang Normalize angle to 0 to 2 * PI range - * - * SYNOPSIS - * t = norm_ang (theta) - * double t Normalized angle - * double theta Input angle - */ - -double -norm_ang (double theta) -{ - while (theta < 0.) - theta += TWOPI; - while (theta >= TWOPI) - theta -= TWOPI; - - return (theta); -}