Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site brl-tgr.ARPA Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!houxm!hogpc!houti!ariel!vax135!cornell!uw-beaver!tektronix!hplabs!hao!seismo!brl-tgr!gwyn From: gwyn@brl-tgr.UUCP Newsgroups: net.lang.c Subject: Re: unary + and C standardization Message-ID: <3387@brl-tgr.ARPA> Date: Wed, 18-Jul-84 22:13:00 EDT Article-I.D.: brl-tgr.3387 Posted: Wed Jul 18 22:13:00 1984 Date-Received: Fri, 20-Jul-84 07:21:34 EDT References: <75@datagen.UUCP> Organization: Ballistics Research Lab Lines: 4 Another use for unary + is to make things line up better: xprime = + x * cos( theta ) + y * sin( theta ); yprime = - x * sin( theta ) + y * cos( theta ); Admittedly a weak reason for adding something to a programming language.