X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fclip.cpp;h=916417772aa18105309aef152fbc53a2d5ca29c3;hp=ca1b7420b00565f5040f6a57c1bbb0e1a904845f;hb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;hpb=1bff68e595a66f3755743a7ee0f974eb876f3520 diff --git a/source/clip.cpp b/source/clip.cpp index ca1b7420..91641777 100644 --- a/source/clip.cpp +++ b/source/clip.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include "clip.h" #include "gl.h" @@ -13,10 +6,10 @@ namespace GL { ClipPlane::ClipPlane(double a, double b, double c, double d) { - eq[0]=a; - eq[1]=b; - eq[2]=c; - eq[3]=d; + eq[0] = a; + eq[1] = b; + eq[2] = c; + eq[3] = d; } void ClipPlane::apply_to(unsigned n)