X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fexample%2Fbox.c;h=3fbedcb7816ea454319c7b97e3fc5fb95100c231;hb=879d0eec420fe0fd5ddcd56c8fe62b82a6744edd;hp=f4f3e721c8d1ab8131eed4c0456e0f242e6f3de6;hpb=dcd54b8f52f1003b9723ea1aaeb6b1226e04e675;p=swftools.git diff --git a/lib/example/box.c b/lib/example/box.c index f4f3e72..3fbedcb 100644 --- a/lib/example/box.c +++ b/lib/example/box.c @@ -1,14 +1,24 @@ -/* box.c +/* box.c Example for drawing 3D grind objects Part of the swftools package. Copyright (c) 2000, 2001 Rainer Böhme - - This file is distributed under the GPL, see file COPYING for details + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + 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 #include @@ -42,7 +52,7 @@ void calcTables() } } -void ShapeSquare(LPTAG t,LPSHAPE s,int p1,int p2,int p3,int p4,int dx,int dy) +void ShapeSquare(TAG* t,SHAPE* s,int p1,int p2,int p3,int p4,int dx,int dy) { // Hidden-Line-Check if (((dX[p2]-dX[p1])*(dY[p3]-dY[p1])-(dX[p3]-dX[p1])*(dY[p2]-dY[p1]))<0) return; @@ -89,10 +99,10 @@ void mapBox(int xw,int yw,int zw) int main (int argc,char ** argv) { SWF swf; - LPTAG t; + TAG* t; RGBA rgb; SRECT r; - LPSHAPE s; + SHAPE* s; S32 width = 800,height = 800; U8 gbits,abits; CXFORM cx1,cx2; @@ -294,7 +304,7 @@ int main (int argc,char ** argv) // swf_WriteCGI(&swf); - f = open("box.swf",O_RDWR|O_CREAT|O_TRUNC,0644); + f = open("box.swf",O_RDWR|O_CREAT|O_TRUNC|O_BINARY,0644); if FAILED(swf_WriteSWF(f,&swf)) fprintf(stderr,"WriteSWF() failed.\n"); close(f);