~ubuntu-branches/ubuntu/edgy/pouetchess/edgy-updates

« back to all changes in this revision

Viewing changes to src/raytracing.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc (mr_pouit)
  • Date: 2006-07-15 15:45:57 UTC
  • Revision ID: james.westby@ubuntu.com-20060715154557-3paxq02hx4od0wm4
Tags: upstream-0.2.0
ImportĀ upstreamĀ versionĀ 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2006 by Frederic MARTIN                                 *
 
3
 *   martin-frederic@users.sourceforge.net                                 *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) 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 of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef __RAY_TRACING__H__
 
22
#define __RAY_TRACING__H__
 
23
 
 
24
 
 
25
// SelectPolygon() creates a ray from the current camera coordinates to a point half a unit into the screen that is coincident
 
26
// with the mouse coordinates passed in and checks for an intersection along the line of this ray with the quad passed in.
 
27
// The 4 vertices of the quad MUST be in the same plane
 
28
// If there is an intersection then the function returns true.
 
29
// MouseX and MouseY are relative to the top-left corner of the window.
 
30
bool SelectPolygon(double cameraX, double cameraY, double cameraZ, 
 
31
                                   double Vertices[12], double Intersec[3], 
 
32
                                   int MouseX, int MouseY);
 
33
 
 
34
 
 
35
#endif
 
36
 
 
37