Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/Glide64/3dmath.h
2 views
/*1* Glide64 - Glide video plugin for Nintendo 64 emulators.2* Copyright (c) 2002 Dave20013* Copyright (c) 2003-2009 Sergey 'Gonetz' Lipski4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public License16* along with this program; if not, write to the Free Software17* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18*/1920//****************************************************************21//22// Glide64 - Glide Plugin for Nintendo 64 emulators23// Project started on December 29th, 200124//25// Authors:26// Dave2001, original author, founded the project in 2001, left it in 200227// Gugaman, joined the project in 2002, left it in 200228// Sergey 'Gonetz' Lipski, joined the project in 2002, main author since fall of 200229// Hiroshi 'KoolSmoky' Morii, joined the project in 200730//31//****************************************************************32//33// To modify Glide64:34// * Write your name and (optional)email, commented by your work, so I know who did it, and so that you can find which parts you modified when it comes time to send it to me.35// * Do NOT send me the whole project or file that you modified. Take out your modified code sections, and tell me where to put them. If people sent the whole thing, I would have many different versions, but no idea how to combine them all.36//37//****************************************************************3839void calc_light (VERTEX *v);40void calc_linear (VERTEX *v);41void calc_sphere (VERTEX *v);4243void math_init();4445typedef void (*MULMATRIX)(float m1[4][4],float m2[4][4],float r[4][4]);46extern MULMATRIX MulMatrices;47typedef void (*TRANSFORMVECTOR)(float *src,float *dst,float mat[4][4]);48extern TRANSFORMVECTOR TransformVector;49extern TRANSFORMVECTOR InverseTransformVector;50typedef float (*DOTPRODUCT)(register float *v1, register float *v2);51extern DOTPRODUCT DotProduct;52typedef void (*NORMALIZEVECTOR)(float *v);53extern NORMALIZEVECTOR NormalizeVector;545556